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++)