diff options
Diffstat (limited to 'src/modules/extra/m_pgsql.cpp')
| -rw-r--r-- | src/modules/extra/m_pgsql.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/extra/m_pgsql.cpp b/src/modules/extra/m_pgsql.cpp index a6501c44e..998c25630 100644 --- a/src/modules/extra/m_pgsql.cpp +++ b/src/modules/extra/m_pgsql.cpp @@ -82,7 +82,7 @@ class ReconnectTimer final ReconnectTimer(ModulePgSQL* m) : Timer(5, false), mod(m) { } - bool Tick(time_t TIME) override; + bool Tick() override; }; struct QueueItem final @@ -618,7 +618,7 @@ class ModulePgSQL final } }; -bool ReconnectTimer::Tick(time_t time) +bool ReconnectTimer::Tick() { mod->retimer = NULL; mod->ReadConf(); |
