summaryrefslogtreecommitdiff
path: root/apps/debug_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/debug_menu.c')
-rw-r--r--apps/debug_menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 6a14ea5c33..81ea97fcd9 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 °/oo */
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);
@@ -1732,7 +1732,7 @@ static int disk_callback(int btn, struct gui_synclist *lists)
1732 static const unsigned char i_vmin[] = { 0, 1, 5, 10, 25, 35, 60, 100 }; 1732 static const unsigned char i_vmin[] = { 0, 1, 5, 10, 25, 35, 60, 100 };
1733 static const unsigned char i_vmax[] = { 1, 5, 10, 25, 35, 45, 80, 200 }; 1733 static const unsigned char i_vmax[] = { 1, 5, 10, 25, 35, 45, 80, 200 };
1734 static const unsigned char *kbit_units[] = { "kBit/s", "MBit/s", "GBit/s" }; 1734 static const unsigned char *kbit_units[] = { "kBit/s", "MBit/s", "GBit/s" };
1735 static const unsigned char *nsec_units[] = { "ns", "�s", "ms" }; 1735 static const unsigned char *nsec_units[] = { "ns", "µs", "ms" };
1736 static const char *spec_vers[] = { "1.0-1.2", "1.4", "2.0-2.2", 1736 static const char *spec_vers[] = { "1.0-1.2", "1.4", "2.0-2.2",
1737 "3.1-3.31", "4.0" }; 1737 "3.1-3.31", "4.0" };
1738 if ((btn == ACTION_STD_OK) || (btn == SYS_FS_CHANGED) || (btn == ACTION_REDRAW)) 1738 if ((btn == ACTION_STD_OK) || (btn == SYS_FS_CHANGED) || (btn == ACTION_REDRAW))