From 09ed3d3b2e95c3bd9f87bcd25e108b6455d1664c Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Thu, 4 Mar 2021 15:48:11 +0100 Subject: [PATCH] Fix stats writer bug for live writer --- jf-live-writer/src/WriterStats.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jf-live-writer/src/WriterStats.cpp b/jf-live-writer/src/WriterStats.cpp index f6db5cd..9a9a22b 100644 --- a/jf-live-writer/src/WriterStats.cpp +++ b/jf-live-writer/src/WriterStats.cpp @@ -8,7 +8,7 @@ WriterStats::WriterStats( const string& detector_name, const size_t stats_modulo) : detector_name_(detector_name), - stats_modulo_(stats_modulo), + stats_modulo_(stats_modulo) { reset_counters(); }