diff options
author | Max Horn | 2005-06-26 23:47:19 +0000 |
---|---|---|
committer | Max Horn | 2005-06-26 23:47:19 +0000 |
commit | 48a00b6846e324dbe4d53d67f50c3c541582ae88 (patch) | |
tree | 5ce8a2f3e303c2d9128f4dc99f0e507fcefd5ecd /sound | |
parent | 0baaea85ed96a8f848d24c49d34524aa43b50ae6 (diff) | |
download | scummvm-rg350-48a00b6846e324dbe4d53d67f50c3c541582ae88.tar.gz scummvm-rg350-48a00b6846e324dbe4d53d67f50c3c541582ae88.tar.bz2 scummvm-rg350-48a00b6846e324dbe4d53d67f50c3c541582ae88.zip |
Fix warning
svn-id: r18469
Diffstat (limited to 'sound')
-rw-r--r-- | sound/mp3.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/mp3.cpp b/sound/mp3.cpp index 415ce04821..792f8f6bf4 100644 --- a/sound/mp3.cpp +++ b/sound/mp3.cpp @@ -349,12 +349,12 @@ MP3TrackInfo::MP3TrackInfo(File *file) { struct mad_stream& stream = *streamptr; struct mad_frame& frame = *frameptr; unsigned char* buffer = bufferptr; - int sizeofbuffer = 8192; + uint sizeofbuffer = 8192; #else struct mad_stream stream; struct mad_frame frame; unsigned char buffer[8192]; - int sizeofbuffer = sizeof(buffer); + uint sizeofbuffer = sizeof(buffer); #endif unsigned int buflen = 0; int count = 0; |