summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/codecs/au.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/au.c b/apps/codecs/au.c
index 1bcc308e44..924b29088d 100644
--- a/apps/codecs/au.c
+++ b/apps/codecs/au.c
@@ -222,7 +222,7 @@ next_track:
222 codec = get_au_codec(format.formattag); 222 codec = get_au_codec(format.formattag);
223 if (!codec) 223 if (!codec)
224 { 224 {
225 DEBUGF("CODEC_ERROR: unsupport sun audio format: %x\n", format.formattag); 225 DEBUGF("CODEC_ERROR: unsupport sun audio format: %x\n", (int)format.formattag);
226 status = CODEC_ERROR; 226 status = CODEC_ERROR;
227 goto done; 227 goto done;
228 } 228 }