1
0
Fork 0
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:
Solomon Peachy 2020-07-24 23:02:33 -04:00
parent 469866b6c9
commit a84176122c
2 changed files with 5 additions and 0 deletions

View file

@ -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))