mirror of
https://github.com/mpv-player/mpv
synced 2025-04-10 19:51:43 +00:00
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:
parent
c66a69924b
commit
c20f7e99c4
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
#define FCC(a,b,c,d) (((a)<<24)|((b)<<16)|((c)<<8)|(d))
|
#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;
|
if(c>=32 && c<128) return c;
|
||||||
return '?';
|
return '?';
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user