summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2008-05-09 16:57:26 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2008-05-09 16:57:26 +0000
commitc85faed1ee3205d99c1ec053fc5af28d59ac0ab3 (patch)
tree06df959c1d841116f5992aee9674dc6f9e3cec7e
parent55129ad3c37d818bfb7d9ac6b65d34eba604f51d (diff)
downloadrockbox-c85faed1ee3205d99c1ec053fc5af28d59ac0ab3.tar.gz
rockbox-c85faed1ee3205d99c1ec053fc5af28d59ac0ab3.zip
Change comment for clarity.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17431 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/debug_menu.c2
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);