summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/debug_menu.c2
-rw-r--r--apps/playback.c2
-rw-r--r--apps/playback.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 9cd2c9bb92..0dec3cd738 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -449,7 +449,7 @@ static bool dbg_buffering_thread(void)
449 449
450 screens[i].putsf(0, line++, "data_rem: %ld", (long)d.data_rem); 450 screens[i].putsf(0, line++, "data_rem: %ld", (long)d.data_rem);
451 451
452 screens[i].putsf(0, line++, "track count: %2d", audio_track_count()); 452 screens[i].putsf(0, line++, "track count: %2u", audio_track_count());
453 453
454 screens[i].putsf(0, line++, "handle count: %d", (int)d.num_handles); 454 screens[i].putsf(0, line++, "handle count: %d", (int)d.num_handles);
455 455
diff --git a/apps/playback.c b/apps/playback.c
index e8aaf3bacc..8e18a479b9 100644
--- a/apps/playback.c
+++ b/apps/playback.c
@@ -3745,7 +3745,7 @@ size_t audio_get_filebuflen(void)
3745} 3745}
3746 3746
3747/* How many tracks exist on the buffer - full or partial */ 3747/* How many tracks exist on the buffer - full or partial */
3748int audio_track_count(void) 3748unsigned int audio_track_count(void)
3749 __attribute__((alias("track_list_count"))); 3749 __attribute__((alias("track_list_count")));
3750 3750
3751/* Return total ringbuffer space occupied - ridx to widx */ 3751/* Return total ringbuffer space occupied - ridx to widx */
diff --git a/apps/playback.h b/apps/playback.h
index 8a63bd7907..c2682e6baf 100644
--- a/apps/playback.h
+++ b/apps/playback.h
@@ -76,7 +76,7 @@ struct bufopen_bitmap_data {
76#endif /* HAVE_ALBUMART */ 76#endif /* HAVE_ALBUMART */
77 77
78/* Functions */ 78/* Functions */
79int audio_track_count(void); 79unsigned int audio_track_count(void);
80long audio_filebufused(void); 80long audio_filebufused(void);
81void audio_pre_ff_rewind(void); 81void audio_pre_ff_rewind(void);
82void audio_skip(int direction); 82void audio_skip(int direction);