Mark xx function as returning char, fixes:

avi-fix.c:18: warning: return type defaults to 'int'


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24255 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-08-28 10:41:16 +00:00
parent c66a69924b
commit c20f7e99c4
1 changed files with 1 additions and 1 deletions

View File

@ -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 '?';
}