diff options
Diffstat (limited to 'src/app_console')
| -rw-r--r-- | src/app_console/app_console.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app_console/app_console.cpp b/src/app_console/app_console.cpp index 8686ac58..30b7d2dc 100644 --- a/src/app_console/app_console.cpp +++ b/src/app_console/app_console.cpp @@ -403,7 +403,7 @@ int CmdTaskStats(int argc, char** argv) { str << "\t\t"; } - str << std::fixed << std::setprecision(1) << time_percent * 100; + str << std::fixed << std::setprecision(1) << (time_percent * 100); str << "%"; info_strings.push_back({run_time, str.str()}); |
