[MPlayer-cvslog] r24255 - trunk/TOOLS/avi-fix.c

diego subversion at mplayerhq.hu
Tue Aug 28 12:41:16 CEST 2007


Author: diego
Date: Tue Aug 28 12:41:16 2007
New Revision: 24255

Log:
Mark xx function as returning char, fixes:
avi-fix.c:18: warning: return type defaults to 'int'


Modified:
   trunk/TOOLS/avi-fix.c

Modified: trunk/TOOLS/avi-fix.c
==============================================================================
--- trunk/TOOLS/avi-fix.c	(original)
+++ trunk/TOOLS/avi-fix.c	Tue Aug 28 12:41:16 2007
@@ -15,7 +15,7 @@
 
 #define FCC(a,b,c,d)  (((a)<<24)|((b)<<16)|((c)<<8)|(d))
 
-static inline xx(unsigned char c){
+static inline char xx(unsigned char c){
     if(c>=32 && c<128) return c;
     return '?';
 }



More information about the MPlayer-cvslog mailing list