diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-02-20 22:16:19 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-02-20 22:16:19 +0000 |
commit | abf5a30aae55b878ca9352d00853d2ca62408283 (patch) | |
tree | 0fb0972ff1a2b19e2d6b34ff5d410654bb34aaa0 /src/common/timer.c | |
parent | bf217fad8c8d6f19258ff437576726849a4d5e4a (diff) | |
download | hercules-abf5a30aae55b878ca9352d00853d2ca62408283.tar.gz hercules-abf5a30aae55b878ca9352d00853d2ca62408283.tar.bz2 hercules-abf5a30aae55b878ca9352d00853d2ca62408283.tar.xz hercules-abf5a30aae55b878ca9352d00853d2ca62408283.zip |
- Added back the char-sql server sending the GM list when the map server connects.
- Fixed a bug in the add_timer_interval error reporting.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5351 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/timer.c')
-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 49b6e18de..9baa33e08 100644 --- a/src/common/timer.c +++ b/src/common/timer.c @@ -241,7 +241,7 @@ int add_timer_interval(unsigned int tick, int (*func)(int,unsigned int,int,int), if (interval < 1) {
ShowError("add_timer_interval : function %08x(%s) has invalid interval %d!\n",
- (int)func, search_timer_func_list(func));
+ (int)func, search_timer_func_list(func), interval);
return -1;
}
|