1
0
Fork 0
forked from len0rd/rockbox

Change comment for clarity.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17431 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Andree Buschmann 2008-05-09 16:57:26 +00:00
parent 55129ad3c3
commit c85faed1ee

View file

@ -375,7 +375,7 @@ static bool dbg_buffering_thread(void)
if (ticks > 0) if (ticks > 0)
{ {
int boostquota = boost_ticks * 1000 / ticks; /* in °/oo */ int boostquota = boost_ticks * 1000 / ticks; /* in 0.1 % */
int avgclock = freq_sum * 10 / ticks; /* in 100 kHz */ int avgclock = freq_sum * 10 / ticks; /* in 100 kHz */
snprintf(buf, sizeof(buf), "boost ratio: %3d.%d%% (%2d.%dMHz)", snprintf(buf, sizeof(buf), "boost ratio: %3d.%d%% (%2d.%dMHz)",
boostquota/10, boostquota%10, avgclock/10, avgclock%10); boostquota/10, boostquota%10, avgclock/10, avgclock%10);