From 7a132a257a47be37daa2da97706745ca9182d14a Mon Sep 17 00:00:00 2001 From: William Wilgus Date: Thu, 18 Oct 2018 09:57:20 -0400 Subject: Fix playback.c audio_track_count() warning changes return to unsigned int to match underlying aliased function Change-Id: I7015c7ad929344441249aa7c4f2af361142fcaf4 --- apps/playback.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/playback.c') 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) } /* How many tracks exist on the buffer - full or partial */ -int audio_track_count(void) +unsigned int audio_track_count(void) __attribute__((alias("track_list_count"))); /* Return total ringbuffer space occupied - ridx to widx */ -- cgit v1.2.3