1
0
Fork 0
forked from len0rd/rockbox

FS#10122 - Fix wrong format type of logf functions in speex.c

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22857 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Tomer Shalev 2009-09-30 12:56:33 +00:00
parent 3d1b26cddc
commit a0eadade30
2 changed files with 7 additions and 7 deletions

View file

@ -281,7 +281,7 @@ frame_start:
blockstodecode)) < 0)
{
/* Frame decoding error, abort */
LOGF("APE: Frame %d, error %d\n",currentframe,res);
LOGF("APE: Frame %lu, error %d\n",currentframe,res);
retval = CODEC_ERROR;
goto done;
}