forked from len0rd/rockbox
Eliminate %zd tag in printf format strings, replace them with %ld. The %z formatter kept generating type mismatch warnings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26040 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
ff548fad86
commit
6ef04a7f0e
5 changed files with 25 additions and 21 deletions
|
@ -279,8 +279,8 @@ static int audio_sync(struct audio_thread_data *td,
|
|||
{
|
||||
if (audio_buffer(str, STREAM_PM_RANDOM_ACCESS) == STREAM_DATA_END)
|
||||
{
|
||||
DEBUGF("audio_sync:STR_DATA_END\n aqu:%zd swl:%ld swr:%ld\n",
|
||||
audio_queue.used, str->hdr.win_left, str->hdr.win_right);
|
||||
DEBUGF("audio_sync:STR_DATA_END\n aqu:%ld swl:%ld swr:%ld\n",
|
||||
(long)audio_queue.used, str->hdr.win_left, str->hdr.win_right);
|
||||
if (audio_queue.used <= MAD_BUFFER_GUARD)
|
||||
goto sync_data_end;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue