diff options
author | Yoshihisa Uchida <uchida@rockbox.org> | 2010-02-28 10:54:09 +0000 |
---|---|---|
committer | Yoshihisa Uchida <uchida@rockbox.org> | 2010-02-28 10:54:09 +0000 |
commit | 942d7c6bcc2ebcae343d477497ae728ada609a00 (patch) | |
tree | e2b342acb9256336b6ad1ce13a691a6973116c3c | |
parent | 50b036320ba53963f142d00ecd9ea7b27901ea35 (diff) | |
download | rockbox-942d7c6bcc2ebcae343d477497ae728ada609a00.tar.gz rockbox-942d7c6bcc2ebcae343d477497ae728ada609a00.zip |
fix yellow
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24962 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/codecs/au.c | 2 |
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 | } |