forked from len0rd/rockbox
Fix playback.c audio_track_count() warning
changes return to unsigned int to match underlying aliased function Change-Id: I7015c7ad929344441249aa7c4f2af361142fcaf4
This commit is contained in:
parent
7c2295ea46
commit
7a132a257a
3 changed files with 3 additions and 3 deletions
|
|
@ -449,7 +449,7 @@ static bool dbg_buffering_thread(void)
|
|||
|
||||
screens[i].putsf(0, line++, "data_rem: %ld", (long)d.data_rem);
|
||||
|
||||
screens[i].putsf(0, line++, "track count: %2d", audio_track_count());
|
||||
screens[i].putsf(0, line++, "track count: %2u", audio_track_count());
|
||||
|
||||
screens[i].putsf(0, line++, "handle count: %d", (int)d.num_handles);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue