summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/timer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timer.cpp b/src/timer.cpp
index 7d9c9f3df..c172f2fa5 100644
--- a/src/timer.cpp
+++ b/src/timer.cpp
@@ -67,7 +67,7 @@ void TickTimers(time_t TIME)
void TickMissedTimers(time_t TIME)
{
- for (time_t n = TIME-1; time_t n > TIME-120; n--)
+ for (time_t n = TIME-1; n > TIME-120; n--)
{
timerlist::iterator found = Timers.find(n);
if (found != Timers.end())