git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5741 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2002-04-20 23:15:12 +00:00
parent b0781e5b42
commit a2b9b8fb06
1 changed files with 7 additions and 1 deletions

View File

@ -190,8 +190,14 @@ static inline void dbgprintf(char* fmt, ...)
#undef MPLAYER
#ifdef MPLAYER
#include "../mp_msg.h"
if (verbose > 2)
if (verbose > 2)
{
va_list va;
va_start(va, fmt);
mp_dbg(MSGT_WIN32, MSGL_DBG3, fmt, va);
va_end(va);
}
#endif
}