C99 varargs in macros can not be empty, adjust definition so it compiles

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23930 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2007-07-30 13:06:26 +00:00
parent 660e681ccd
commit 701cf0fa79
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@
#ifdef __GNUC__
#define mp_msg(t, l, m, args...) fprintf(stderr, m, ##args)
#else
#define mp_msg(t, l, m, ...) fprintf(stderr, m, __VA_ARGS__)
#define mp_msg(t, l, ...) fprintf(stderr, __VA_ARGS__)
#endif
#endif