changeset 24235:a44a34939715

Mark xx function as returning char, fixes: avi-fix.c:18: warning: return type defaults to 'int'
author diego
date Tue, 28 Aug 2007 10:41:16 +0000
parents d0991c8e2fee
children 0b4098f8331a
files TOOLS/avi-fix.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/TOOLS/avi-fix.c	Tue Aug 28 10:38:35 2007 +0000
+++ b/TOOLS/avi-fix.c	Tue Aug 28 10:41:16 2007 +0000
@@ -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 '?';
 }