IMAGE: Fix compiler warning in Indeo decoders

This commit is contained in:
Paul Gilbert 2016-09-22 06:41:26 -04:00
parent 9169099b23
commit 785696ae5d

View File

@ -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);
}