diff libmpeg2/decode.c @ 2080:f91ad6d23ce9

gcc3 warning fixed
author arpi
date Thu, 04 Oct 2001 18:30:30 +0000
parents 7de4eceac32f
children c568f4fffb0a
line wrap: on
line diff
--- a/libmpeg2/decode.c	Thu Oct 04 18:03:58 2001 +0000
+++ b/libmpeg2/decode.c	Thu Oct 04 18:30:30 2001 +0000
@@ -115,7 +115,7 @@
 #else
 	for(i=0;i<3;i++){
 #endif
-            base = memalign(64,buff_size);
+            base = (unsigned char *)memalign(64,buff_size);
 	    frames[i].base[0] = base;
 	    frames[i].base[1] = base + frame_size * 5 / 4;
 	    frames[i].base[2] = base + frame_size;