diff options
author | Sadie Powell <sadie@witchery.services> | 2024-02-11 18:10:38 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-02-11 18:10:38 +0000 |
commit | cef56abea4cf302d20ba7ab33719e86276b672ea (patch) | |
tree | db27b33f819f2d3548e7bc43e4a036c7803f8de5 /modules/proxyscan.cpp | |
parent | 30b9f127113cc715cf90f87a298572b8a73b6788 (diff) |
Consistently use time_t for the timer duration.
Diffstat (limited to 'modules/proxyscan.cpp')
-rw-r--r-- | modules/proxyscan.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/proxyscan.cpp b/modules/proxyscan.cpp index 4634b9f95..601987bcd 100644 --- a/modules/proxyscan.cpp +++ b/modules/proxyscan.cpp @@ -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) { } |