From 3cff628a6213edb7621f50797d4b989e7e62f667 Mon Sep 17 00:00:00 2001 From: Tom Lally Date: Fri, 2 Sep 2022 18:49:12 +0100 Subject: [PATCH] Missing semicolon. --- src/util/SystemInfo/SystemInfoLinux.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/SystemInfo/SystemInfoLinux.cpp b/src/util/SystemInfo/SystemInfoLinux.cpp index a6bbab5c..f13868bf 100644 --- a/src/util/SystemInfo/SystemInfoLinux.cpp +++ b/src/util/SystemInfo/SystemInfoLinux.cpp @@ -58,7 +58,7 @@ void QueryCoreTimes(uint32 count, ProcessorTime out[]) } else { - for (auto i = 0; i < count; ++i) out[i] = { } + for (auto i = 0; i < count; ++i) out[i] = { }; } }