From ff3b37804fea7ec6fc847604b2e94d3e891f0d81 Mon Sep 17 00:00:00 2001 From: arpi Date: Fri, 3 Jan 2003 12:36:14 +0000 Subject: compiler warning fix patch by sr (and others too in the past) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8736 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libaf/af_mp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libaf/af_mp.h b/libaf/af_mp.h index 33f0dfbedc..68cbf790da 100644 --- a/libaf/af_mp.h +++ b/libaf/af_mp.h @@ -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); -- cgit v1.2.3