diff options
| author | 2014-07-10 12:17:55 +0200 | |
|---|---|---|
| committer | 2014-07-10 12:17:55 +0200 | |
| commit | acccaa39641500b8a691db4136e6571102a438ed (patch) | |
| tree | 5faed16f0fc7ac11566d6df19561abd3c3ad8c43 /src/modules/extra/m_pgsql.cpp | |
| parent | Move the definition of Timer::Timer() into the source file from the header (diff) | |
Remove current time parameter of the Timer constructor
Diffstat (limited to 'src/modules/extra/m_pgsql.cpp')
| -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); |
