tools/cws2fws: Use a similar implementation in dbgprintf() as in ff_dlog()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2015-05-06 16:09:26 +02:00
parent 0a6b410edf
commit 3c7d3d27be

View File

@ -22,7 +22,7 @@
#ifdef DEBUG #ifdef DEBUG
#define dbgprintf printf #define dbgprintf printf
#else #else
#define dbgprintf(...) #define dbgprintf(...) do { if (0) printf(__VA_ARGS__); } while (0)
#endif #endif
int main(int argc, char *argv[]) int main(int argc, char *argv[])