diff indeo3.c @ 3776:1843a85123b7 libavcodec

fix some signedness warnings
author mru
date Wed, 27 Sep 2006 19:47:39 +0000
parents 0b546eab515d
children c8c591fe26f8
line wrap: on
line diff
--- a/indeo3.c	Wed Sep 27 19:46:19 2006 +0000
+++ b/indeo3.c	Wed Sep 27 19:47:39 2006 +0000
@@ -381,7 +381,7 @@
     } else if(cmd == 3) {
       if(strip->usl7 == 0) {
         strip->usl7 = 1;
-        ref_vectors = buf2 + (*buf1 * 2);
+        ref_vectors = (signed char*)buf2 + (*buf1 * 2);
         buf1++;
         continue;
       }