summaryrefslogtreecommitdiff
path: root/src/tool/convert.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tool/convert.c')
-rw-r--r--src/tool/convert.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/tool/convert.c b/src/tool/convert.c
index 2959eb826..e9d82c362 100644
--- a/src/tool/convert.c
+++ b/src/tool/convert.c
@@ -5,8 +5,6 @@
#include <stdlib.h>
#include <string.h>
-#define RETCODE "\r\n"
-
#define MAX_INVENTORY 100
#define MAX_CART 100
#define MAX_SKILL 350
@@ -282,7 +280,7 @@ int mmo_char_convert(char *fname1,char *fname2)
ret=mmo_char_fromstr(line,&char_dat);
if(ret){
mmo_char_tostr(line,&char_dat);
- fprintf(ofp,"%s" RETCODE,line);
+ fprintf(ofp,"%s\n",line);
}
}
fclose(ifp);