forked from len0rd/rockbox
Fix two variable-set-but-not-used warnings
(found using -Os with gcc494 on the nano2g) Change-Id: If0deee3e3cde50e6bf5aff595bebc0f134dcc393
This commit is contained in:
parent
469866b6c9
commit
a84176122c
2 changed files with 5 additions and 0 deletions
|
@ -40,6 +40,7 @@ enum plugin_status plugin_start(const void* parameter)
|
|||
int j,x;
|
||||
for (j=1; j<100000; j++)
|
||||
x = j*11;
|
||||
(void)x;
|
||||
rb->screens[0]->clear_display();
|
||||
rb->screens[0]->putsf(0, 0, "%s: %d",boost?"boost":"normal",count);
|
||||
if (TIME_AFTER(*rb->current_tick, last_tick+HZ))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue