From aa0adb152eacffa456b4ecee43372523b971b68e Mon Sep 17 00:00:00 2001 From: Martin Piatka Date: Tue, 23 May 2023 13:05:14 +0200 Subject: [PATCH] logger: Add missing initialization Doesn't really matter since it's set in host.cpp --- src/debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debug.h b/src/debug.h index 7f9efdb82..4964ad984 100644 --- a/src/debug.h +++ b/src/debug.h @@ -170,7 +170,7 @@ private: return buffer; } - std::atomic skip_repeated; + std::atomic skip_repeated = true; log_timestamp_mode show_timestamps; bool interactive = false;