mirror of https://github.com/mpv-player/mpv
compiler warning fix
patch by sr <seru@gmx.net> (and others too in the past) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8736 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
1eb429c1d8
commit
ff3b37804f
|
@ -18,7 +18,7 @@
|
|||
#undef af_msg
|
||||
#endif
|
||||
#define af_msg(lev, args... ) \
|
||||
mp_msg(MSGT_AFILTER,((lev<0)?(lev+3):((lev==0)?MSGL_INFO:(lev+5))), args ## )
|
||||
mp_msg(MSGT_AFILTER,((lev<0)?(lev+3):((lev==0)?MSGL_INFO:(lev+5))), ##args )
|
||||
|
||||
/* Decodes the format from mplayer format to libaf format */
|
||||
extern int af_format_decode(int format);
|
||||
|
|
Loading…
Reference in New Issue