From 1f78934ca42efd538bffab5bd5ee0257186944ac Mon Sep 17 00:00:00 2001 From: kimwalisch Date: Wed, 14 Feb 2024 10:38:34 +0100 Subject: [PATCH] Refactor --- src/app/stressTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/stressTest.cpp b/src/app/stressTest.cpp index 4b90652d2..4dd77e7f1 100644 --- a/src/app/stressTest.cpp +++ b/src/app/stressTest.cpp @@ -118,7 +118,7 @@ std::string getTimeElapsed(int64_t secs) { // Seconds per: year, day, hour, minute, second Array time = { 365 * 24 * 3600, 24 * 3600, 3600, 60, 1 }; - Array suffix = { "y", "d", "h", "m", "s" }; + Array suffix = { 'y', 'd', 'h', 'm', 's' }; std::string timeStr; for (std::size_t i = 0; i < time.size(); i++)