summaryrefslogtreecommitdiff
path: root/apps/playback.c
diff options
context:
space:
mode:
authorWilliam Wilgus <me.theuser@yahoo.com>2018-10-18 09:57:20 -0400
committerWilliam Wilgus <me.theuser@yahoo.com>2018-10-18 09:57:20 -0400
commit7a132a257a47be37daa2da97706745ca9182d14a (patch)
tree4c70066205d32b3c4e74a06e5b2a7021f5d5c363 /apps/playback.c
parent7c2295ea46c496ea19f053126300b7a393bae028 (diff)
downloadrockbox-7a132a257a47be37daa2da97706745ca9182d14a.tar.gz
rockbox-7a132a257a47be37daa2da97706745ca9182d14a.zip
Fix playback.c audio_track_count() warning
changes return to unsigned int to match underlying aliased function Change-Id: I7015c7ad929344441249aa7c4f2af361142fcaf4
Diffstat (limited to 'apps/playback.c')
-rw-r--r--apps/playback.c2
1 files changed, 1 insertions, 1 deletions
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 */