summaryrefslogtreecommitdiff
path: root/src/char/inter.c
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2011-04-04 12:24:56 -0700
committerBen Longbons <b.r.longbons@gmail.com>2011-04-04 12:24:56 -0700
commit2c863c0d99aa3df9ef2eb4ceb112c4d946520f0a (patch)
treef887293b4ec57253d02034d270c00826424b080b /src/char/inter.c
parent721265e0fe2bd38bafd3a09a0e574e10c89bd345 (diff)
downloadtmwa-2c863c0d99aa3df9ef2eb4ceb112c4d946520f0a.tar.gz
tmwa-2c863c0d99aa3df9ef2eb4ceb112c4d946520f0a.tar.bz2
tmwa-2c863c0d99aa3df9ef2eb4ceb112c4d946520f0a.tar.xz
tmwa-2c863c0d99aa3df9ef2eb4ceb112c4d946520f0a.zip
Get rid of RETCODE
Diffstat (limited to 'src/char/inter.c')
-rw-r--r--src/char/inter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/char/inter.c b/src/char/inter.c
index a1a5664..e886bf6 100644
--- a/src/char/inter.c
+++ b/src/char/inter.c
@@ -150,7 +150,7 @@ void inter_accreg_save_sub (db_key_t key, db_val_t data, va_list ap)
{
inter_accreg_tostr (line, reg);
fp = va_arg (ap, FILE *);
- fprintf (fp, "%s" RETCODE, line);
+ fprintf (fp, "%s\n", line);
}
}