diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-07-10 12:17:55 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-07-10 12:17:55 +0200 |
commit | acccaa39641500b8a691db4136e6571102a438ed (patch) | |
tree | 5faed16f0fc7ac11566d6df19561abd3c3ad8c43 /src/modules/extra | |
parent | 8186e0b091a4f487448dcfab7144217a85870d4c (diff) |
Remove current time parameter of the Timer constructor
Diffstat (limited to 'src/modules/extra')
-rw-r--r-- | src/modules/extra/m_pgsql.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/extra/m_pgsql.cpp b/src/modules/extra/m_pgsql.cpp index 1f7d7c450..b89633ede 100644 --- a/src/modules/extra/m_pgsql.cpp +++ b/src/modules/extra/m_pgsql.cpp @@ -57,7 +57,7 @@ class ReconnectTimer : public Timer private: ModulePgSQL* mod; public: - ReconnectTimer(ModulePgSQL* m) : Timer(5, ServerInstance->Time(), false), mod(m) + ReconnectTimer(ModulePgSQL* m) : Timer(5, false), mod(m) { } bool Tick(time_t TIME); |