diff options
| author | Michael Giacomelli <giac2000@hotmail.com> | 2010-01-27 18:12:42 +0000 |
|---|---|---|
| committer | Michael Giacomelli <giac2000@hotmail.com> | 2010-01-27 18:12:42 +0000 |
| commit | 32265959c8e9bd946be7cf5df91ade5089526fa0 (patch) | |
| tree | 8bf2055182b9db9424cdf76fd9cdc54be3e1305e /apps/codecs | |
| parent | e04e2938e79c40a8455f2c713d339ed0d41ad6ef (diff) | |
| download | rockbox-32265959c8e9bd946be7cf5df91ade5089526fa0.zip rockbox-32265959c8e9bd946be7cf5df91ade5089526fa0.tar.gz rockbox-32265959c8e9bd946be7cf5df91ade5089526fa0.tar.bz2 rockbox-32265959c8e9bd946be7cf5df91ade5089526fa0.tar.xz | |
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
Diffstat (limited to 'apps/codecs')
| -rw-r--r-- | apps/codecs/wav.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/wav.c b/apps/codecs/wav.c index 25a82cb..a642f99 100644 --- a/apps/codecs/wav.c +++ b/apps/codecs/wav.c @@ -177,7 +177,7 @@ next_track: * we'll see later if we can't decode it */ DEBUGF("CODEC_WARNING: non-PCM WAVE (formattag=0x%x) " "doesn't have ext. fmt descr (chunksize=%d<18).\n", - (unsigned int)format.formattag, i); + (unsigned int)format.formattag, (int)i); } else { |