From 4de4a3fa1c1f10fbaa544195aad98cc914563e9f Mon Sep 17 00:00:00 2001 From: Michael Giacomelli Date: Wed, 27 Jan 2010 18:05:28 +0000 Subject: Fix warnings on 32 bit sim. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24347 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/aiff.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'apps/codecs/aiff.c') diff --git a/apps/codecs/aiff.c b/apps/codecs/aiff.c index 1b8c2da920..497e0c7c3a 100644 --- a/apps/codecs/aiff.c +++ b/apps/codecs/aiff.c @@ -218,7 +218,8 @@ next_track: codec = get_codec(format.formattag); if (codec == 0) { - DEBUGF("CODEC_ERROR: AIFC does not support compressionType: 0x%x\n", format.formattag); + DEBUGF("CODEC_ERROR: AIFC does not support compressionType: 0x%x\n", + (unsigned int)format.formattag); i = CODEC_ERROR; goto done; } -- cgit v1.2.3