diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-07-26 14:22:28 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-07-26 14:22:28 +0000 |
commit | b6373365e5ac7ccf01c124fcebce6faba2d7519c (patch) | |
tree | 9f48c4b8dfa8c47d119961a55a8503ed9e3551e6 /src/map/guild.c | |
parent | 81d811f3c35d37e358f6874dd702923a0a934275 (diff) | |
download | hercules-b6373365e5ac7ccf01c124fcebce6faba2d7519c.tar.gz hercules-b6373365e5ac7ccf01c124fcebce6faba2d7519c.tar.bz2 hercules-b6373365e5ac7ccf01c124fcebce6faba2d7519c.tar.xz hercules-b6373365e5ac7ccf01c124fcebce6faba2d7519c.zip |
Replaced occurences of '-1' with the more appropriate 'INVALID_TIMER' value where appropriate.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12998 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/guild.c')
-rw-r--r-- | src/map/guild.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/guild.c b/src/map/guild.c index 0f4ec272b..b4f9c100f 100644 --- a/src/map/guild.c +++ b/src/map/guild.c @@ -63,7 +63,7 @@ struct{ // timer for auto saving guild data during WoE #define GUILD_SAVE_INTERVAL 300000 -int guild_save_timer = -1; +int guild_save_timer = INVALID_TIMER; int guild_payexp_timer(int tid, unsigned int tick, int id, intptr data); int guild_save_sub(int tid, unsigned int tick, int id, intptr data); |