summaryrefslogtreecommitdiff
path: root/apps/screens.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/screens.c')
-rw-r--r--apps/screens.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/screens.c b/apps/screens.c
index 8010ebf022..10f9dd234d 100644
--- a/apps/screens.c
+++ b/apps/screens.c
@@ -318,12 +318,12 @@ void charging_display_info(bool animate)
318 4 if USB was connected */ 318 4 if USB was connected */
319int charging_screen(void) 319int charging_screen(void)
320{ 320{
321 int button; 321 unsigned int button;
322 int rc = 0; 322 int rc = 0;
323#ifdef BUTTON_OFF 323#ifdef BUTTON_OFF
324 const int offbutton = BUTTON_OFF; 324 const unsigned int offbutton = BUTTON_OFF;
325#else 325#else
326 const int offbutton = BUTTON_STOP; 326 const unsigned int offbutton = BUTTON_STOP;
327#endif 327#endif
328 328
329 ide_power_enable(false); /* power down the disk, else would be spinning */ 329 ide_power_enable(false); /* power down the disk, else would be spinning */
@@ -1311,8 +1311,8 @@ bool browse_id3(void)
1311 case 6: 1311 case 6:
1312 lcd_puts(0, 0, str(LANG_ID3_LENGHT)); 1312 lcd_puts(0, 0, str(LANG_ID3_LENGHT));
1313 snprintf(scroll_text,sizeof(scroll_text), "%d:%02d", 1313 snprintf(scroll_text,sizeof(scroll_text), "%d:%02d",
1314 id3->length / 60000, 1314 (int) (id3->length / 60000),
1315 id3->length % 60000 / 1000 ); 1315 (int) (id3->length % 60000 / 1000) );
1316 lcd_puts(0, 1, scroll_text); 1316 lcd_puts(0, 1, scroll_text);
1317 break; 1317 break;
1318 1318