diff options
| author | 2021-11-05 04:24:14 +0000 | |
|---|---|---|
| committer | 2021-11-05 04:24:14 +0000 | |
| commit | 0f2257136d71389c274f0ab6dd68db3239da1d71 (patch) | |
| tree | 255c6a21653ca3b7806983ec9f7796e50b243f19 /src/inspircd.cpp | |
| parent | Merge branch 'insp3' into master. (diff) | |
Remove unused time_t field from the timer system.
This is equivalent to calling InspIRCd::Now() and is only actually
used in one place in modules.
Diffstat (limited to 'src/inspircd.cpp')
| -rw-r--r-- | src/inspircd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 332513399..feff47b76 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -645,7 +645,7 @@ void InspIRCd::Run() if ((TIME.tv_sec % 3600) == 0) FOREACH_MOD(OnGarbageCollect, ()); - Timers.TickTimers(TIME.tv_sec); + Timers.TickTimers(); Users.DoBackgroundUserStuff(); if ((TIME.tv_sec % 5) == 0) |
