summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-03-22 18:41:23 -0500
committerAdam <Adam@anope.org>2013-03-22 18:41:23 -0500
commitc3e4f1bf7e8fd97a1a2ef26c9063895f1babf7e8 (patch)
treede87c774777426f574d36b6854b30acbfcb9fcf1 /src
parentf122f104c4a25ae76b92da367cc569bfc71bb16e (diff)
Fix build from earlier merge
Diffstat (limited to 'src')
-rw-r--r--src/timers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timers.cpp b/src/timers.cpp
index 0da0d7fed..94a6fbb3d 100644
--- a/src/timers.cpp
+++ b/src/timers.cpp
@@ -31,7 +31,7 @@ void Timer::SetTimer(time_t t)
{
TimerManager::DelTimer(this);
trigger = t;
- TimerManager::AddTimer(t);
+ TimerManager::AddTimer(this);
}
time_t Timer::GetTimer() const