summaryrefslogtreecommitdiff
path: root/src/map/log.c
diff options
context:
space:
mode:
authorLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-02-17 19:19:04 +0000
committerLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-02-17 19:19:04 +0000
commitc018ccfb1a652ae23b0409f7256f1c24839e14cf (patch)
tree7f8f5b0f09a6c30de24033889e8f7a0819a522f7 /src/map/log.c
parent4f192318c6ce14dc231dba81426161cb7d450738 (diff)
downloadhercules-c018ccfb1a652ae23b0409f7256f1c24839e14cf.tar.gz
hercules-c018ccfb1a652ae23b0409f7256f1c24839e14cf.tar.bz2
hercules-c018ccfb1a652ae23b0409f7256f1c24839e14cf.tar.xz
hercules-c018ccfb1a652ae23b0409f7256f1c24839e14cf.zip
2 fast bugfixes
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@1127 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/log.c')
-rw-r--r--src/map/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/log.c b/src/map/log.c
index b788ab3ba..e37aeae6b 100644
--- a/src/map/log.c
+++ b/src/map/log.c
@@ -59,7 +59,7 @@ int log_drop(struct map_session_data *sd, int monster_id, int *log_drop)
time_t curtime;
time(&curtime);
strftime(timestring, 254, "%m/%d/%Y %H:%M:%S", localtime(&curtime));
- fprintf(logfp,"%s - %s[%d:%d]\t%d\t%d,%d,%d,%d,%d,%d,%d,%d%s", timestring, sd->status.name, sd->status.account_id, sd->status.char_id, monster_id, log_drop[0], log_drop[1], log_drop[2], log_drop[3], log_drop[4], log_drop[5], log_drop[6], log_drop[7], RETCODE);
+ fprintf(logfp,"%s - %s[%d:%d]\t%d\t%d,%d,%d,%d,%d,%d,%d,%d,%d,%d%s", timestring, sd->status.name, sd->status.account_id, sd->status.char_id, monster_id, log_drop[0], log_drop[1], log_drop[2], log_drop[3], log_drop[4], log_drop[5], log_drop[6], log_drop[7], log_drop[8], log_drop[9], RETCODE);
fclose(logfp);
}
#ifndef TXT_ONLY