diff options
| author | 2022-05-17 12:06:26 +0100 | |
|---|---|---|
| committer | 2022-05-17 12:06:26 +0100 | |
| commit | bc2098a492c9175717a92ee63a73a7436ba54d0f (patch) | |
| tree | 88015df501281bf61187cd913f2a627679118f36 /src/modules/m_spanningtree/pingtimer.cpp | |
| parent | Fix not ticking the log timers after the first tick. (diff) | |
Require specifying the repeat argument of the Timer class.
Diffstat (limited to 'src/modules/m_spanningtree/pingtimer.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/pingtimer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/pingtimer.cpp b/src/modules/m_spanningtree/pingtimer.cpp index d87b39672..d42295eb7 100644 --- a/src/modules/m_spanningtree/pingtimer.cpp +++ b/src/modules/m_spanningtree/pingtimer.cpp @@ -25,7 +25,7 @@ #include "commandbuilder.h" PingTimer::PingTimer(TreeServer* ts) - : Timer(Utils->PingFreq) + : Timer(Utils->PingFreq, false) , server(ts) , state(PS_SENDPING) { |
