diff options
author | Paul Gilbert | 2016-09-22 06:41:26 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-09-22 06:41:26 -0400 |
commit | 785696ae5db6f84b2d4fd26d788a07bd08594a13 (patch) | |
tree | 1be8484f59535fb9b6101ba4d40350696bdcc199 /image | |
parent | 9169099b23173bf050a3c4739428de0c9c5a241e (diff) | |
download | scummvm-rg350-785696ae5db6f84b2d4fd26d788a07bd08594a13.tar.gz scummvm-rg350-785696ae5db6f84b2d4fd26d788a07bd08594a13.tar.bz2 scummvm-rg350-785696ae5db6f84b2d4fd26d788a07bd08594a13.zip |
IMAGE: Fix compiler warning in Indeo decoders
Diffstat (limited to 'image')
-rw-r--r-- | image/codecs/indeo/vlc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/image/codecs/indeo/vlc.cpp b/image/codecs/indeo/vlc.cpp index 1793952bcf..e4b1f6ddd9 100644 --- a/image/codecs/indeo/vlc.cpp +++ b/image/codecs/indeo/vlc.cpp @@ -203,7 +203,7 @@ void VLC::freeVlc() { } int VLC::compareVlcSpec(const void *a, const void *b) { - const VLCcode *sa = (VLCcode *)a, *sb = (VLCcode *)b; + const VLCcode *sa = (const VLCcode *)a, *sb = (const VLCcode *)b; return (sa->code >> 1) - (sb->code >> 1); } |