summaryrefslogtreecommitdiff
path: root/apps/codecs/ape.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/ape.c')
-rw-r--r--apps/codecs/ape.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/ape.c b/apps/codecs/ape.c
index ef3d94e1a3..06e8842d01 100644
--- a/apps/codecs/ape.c
+++ b/apps/codecs/ape.c
@@ -281,7 +281,7 @@ frame_start:
281 blockstodecode)) < 0) 281 blockstodecode)) < 0)
282 { 282 {
283 /* Frame decoding error, abort */ 283 /* Frame decoding error, abort */
284 LOGF("APE: Frame %lu, error %d\n",currentframe,res); 284 LOGF("APE: Frame %lu, error %d\n",(unsigned long)currentframe,res);
285 retval = CODEC_ERROR; 285 retval = CODEC_ERROR;
286 goto done; 286 goto done;
287 } 287 }
@@ -322,7 +322,7 @@ frame_start:
322 retval = CODEC_OK; 322 retval = CODEC_OK;
323 323
324done: 324done:
325 LOGF("APE: Decoded %ld samples\n",samplesdone); 325 LOGF("APE: Decoded %lu samples\n",(unsigned long)samplesdone);
326 326
327 if (ci->request_next_track()) 327 if (ci->request_next_track())
328 goto next_track; 328 goto next_track;