diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2011-04-04 12:24:56 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2011-04-04 12:24:56 -0700 |
commit | 2c863c0d99aa3df9ef2eb4ceb112c4d946520f0a (patch) | |
tree | f887293b4ec57253d02034d270c00826424b080b /src/tool/skillfrob.c | |
parent | 721265e0fe2bd38bafd3a09a0e574e10c89bd345 (diff) | |
download | tmwa-2c863c0d99aa3df9ef2eb4ceb112c4d946520f0a.tar.gz tmwa-2c863c0d99aa3df9ef2eb4ceb112c4d946520f0a.tar.bz2 tmwa-2c863c0d99aa3df9ef2eb4ceb112c4d946520f0a.tar.xz tmwa-2c863c0d99aa3df9ef2eb4ceb112c4d946520f0a.zip |
Get rid of RETCODE
Diffstat (limited to 'src/tool/skillfrob.c')
-rw-r--r-- | src/tool/skillfrob.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tool/skillfrob.c b/src/tool/skillfrob.c index c7b6bb6..44855ac 100644 --- a/src/tool/skillfrob.c +++ b/src/tool/skillfrob.c @@ -39,7 +39,7 @@ int mmo_char_convert () { transform_char (&char_dat); mmo_char_tostr (line, &char_dat); - fprintf (ofp, "%s" RETCODE, line); + fprintf (ofp, "%s\n", line); } } fcloseall (); |