diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-12-19 13:41:25 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-12-19 13:41:25 +0000 |
commit | d07073885c8ffd1f1ed58beaa34ad281dbe1a68a (patch) | |
tree | b90d325fa23414a55b40d04b58c6bf7a5101cfc9 /src/common | |
parent | 70dc3acce080b3c4f5061c2394911149d0d82aa4 (diff) | |
download | hercules-d07073885c8ffd1f1ed58beaa34ad281dbe1a68a.tar.gz hercules-d07073885c8ffd1f1ed58beaa34ad281dbe1a68a.tar.bz2 hercules-d07073885c8ffd1f1ed58beaa34ad281dbe1a68a.tar.xz hercules-d07073885c8ffd1f1ed58beaa34ad281dbe1a68a.zip |
- Reverted the mob ThinkTime update, that field is again aDelay as it apparently should be.
- Fixed one small compilation error.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9522 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/timer.c b/src/common/timer.c index 34c95fcf6..a2e67aa09 100644 --- a/src/common/timer.c +++ b/src/common/timer.c @@ -452,7 +452,7 @@ void timer_final(void) struct timer_func_list *tfl; struct timer_func_list *next; - for( tfl=tfl_root; tfl != NULL; tfl = next ) + for( tfl=tfl_root; tfl != NULL; tfl = next ) { next = tfl->next; // copy next pointer aFree(tfl->name); // free structures aFree(tfl); |