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:
arpi 2003-01-03 12:36:14 +00:00
parent 1eb429c1d8
commit ff3b37804f
1 changed files with 1 additions and 1 deletions

View File

@ -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);