summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Giacomelli <giac2000@hotmail.com>2010-01-27 18:12:42 +0000
committerMichael Giacomelli <giac2000@hotmail.com>2010-01-27 18:12:42 +0000
commit32265959c8e9bd946be7cf5df91ade5089526fa0 (patch)
tree8bf2055182b9db9424cdf76fd9cdc54be3e1305e
parente04e2938e79c40a8455f2c713d339ed0d41ad6ef (diff)
downloadrockbox-32265959c8e9bd946be7cf5df91ade5089526fa0.tar.gz
rockbox-32265959c8e9bd946be7cf5df91ade5089526fa0.zip
Try one more time to fix bitness warnings in WAV.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24349 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/codecs/wav.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/wav.c b/apps/codecs/wav.c
index 25a82cbcfe..a642f99a0f 100644
--- a/apps/codecs/wav.c
+++ b/apps/codecs/wav.c
@@ -177,7 +177,7 @@ next_track:
177 * we'll see later if we can't decode it */ 177 * we'll see later if we can't decode it */
178 DEBUGF("CODEC_WARNING: non-PCM WAVE (formattag=0x%x) " 178 DEBUGF("CODEC_WARNING: non-PCM WAVE (formattag=0x%x) "
179 "doesn't have ext. fmt descr (chunksize=%d<18).\n", 179 "doesn't have ext. fmt descr (chunksize=%d<18).\n",
180 (unsigned int)format.formattag, i); 180 (unsigned int)format.formattag, (int)i);
181 } 181 }
182 else 182 else
183 { 183 {