Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
kimwalisch committed Feb 14, 2024
1 parent 91b3115 commit 51466c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/stressTest.cpp
Expand Up @@ -127,7 +127,7 @@ std::string getTimeElapsed(int64_t secs)
{
if (secs > time[i])
{
timeStr += (timeStr.empty()) ? "" : " ";
timeStr += timeStr.empty() ? "" : " ";
timeStr += std::to_string(secs / time[i]) + suffix[i];
secs %= time[i];
}
Expand Down

0 comments on commit 51466c3

Please sign in to comment.