forked from len0rd/rockbox
Fix some more snprintf related warnings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25853 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
54548df56e
commit
77dfff5a55
5 changed files with 6 additions and 4 deletions
|
@ -287,7 +287,7 @@ void failsafe_menu(void)
|
|||
printf("%s %s %s", arrow, options[i], def);
|
||||
}
|
||||
|
||||
snprintf(buf, sizeof(buf), "Time left: %ds",
|
||||
snprintf(buf, sizeof(buf), "Time left: %lds",
|
||||
(TIMEOUT - (current_tick - start_tick)) / HZ);
|
||||
lcd_puts(0, 10, buf);
|
||||
lcd_update();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue