[Scummvm-git-logs] scummvm master -> 785696ae5db6f84b2d4fd26d788a07bd08594a13

dreammaster dreammaster at scummvm.org
Thu Sep 22 12:41:35 CEST 2016


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
785696ae5d IMAGE: Fix compiler warning in Indeo decoders


Commit: 785696ae5db6f84b2d4fd26d788a07bd08594a13
    https://github.com/scummvm/scummvm/commit/785696ae5db6f84b2d4fd26d788a07bd08594a13
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2016-09-22T06:41:26-04:00

Commit Message:
IMAGE: Fix compiler warning in Indeo decoders

Changed paths:
    image/codecs/indeo/vlc.cpp



diff --git a/image/codecs/indeo/vlc.cpp b/image/codecs/indeo/vlc.cpp
index 1793952..e4b1f6d 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);
 }
 





More information about the Scummvm-git-logs mailing list