1
0
mirror of https://github.com/anope/anope.git synced 2026-07-07 22:43:12 +02:00

Consistently use time_t for the timer duration.

This commit is contained in:
Sadie Powell
2024-02-11 18:10:38 +00:00
parent 30b9f12711
commit cef56abea4
5 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ class NickServHeld final
Reference<NickAlias> na;
Anope::string nick;
public:
NickServHeld(Module *me, NickAlias *n, long l)
NickServHeld(Module *me, NickAlias *n, time_t l)
: Timer(me, l)
, na(n)
, nick(na->nick)
+1 -1
View File
@@ -211,7 +211,7 @@ class ModuleProxyScan final
: public Timer
{
public:
ConnectionTimeout(Module *c, long timeout)
ConnectionTimeout(Module *c, time_t timeout)
: Timer(c, timeout, true)
{
}