diff options
Diffstat (limited to 'apps/debug_menu.c')
-rw-r--r-- | apps/debug_menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index 81ea97fcd9..2cc000de17 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c | |||
@@ -375,7 +375,7 @@ static bool dbg_buffering_thread(void) | |||
375 | 375 | ||
376 | if (ticks > 0) | 376 | if (ticks > 0) |
377 | { | 377 | { |
378 | int boostquota = boost_ticks * 1000 / ticks; /* in °/oo */ | 378 | int boostquota = boost_ticks * 1000 / ticks; /* in 0.1 % */ |
379 | int avgclock = freq_sum * 10 / ticks; /* in 100 kHz */ | 379 | int avgclock = freq_sum * 10 / ticks; /* in 100 kHz */ |
380 | snprintf(buf, sizeof(buf), "boost ratio: %3d.%d%% (%2d.%dMHz)", | 380 | snprintf(buf, sizeof(buf), "boost ratio: %3d.%d%% (%2d.%dMHz)", |
381 | boostquota/10, boostquota%10, avgclock/10, avgclock%10); | 381 | boostquota/10, boostquota%10, avgclock/10, avgclock%10); |