Commit 3c7d3d27 authored by Michael Niedermayer's avatar Michael Niedermayer

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

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 0a6b410e
......@@ -22,7 +22,7 @@
#ifdef DEBUG
#define dbgprintf printf
#else
#define dbgprintf(...)
#define dbgprintf(...) do { if (0) printf(__VA_ARGS__); } while (0)
#endif
int main(int argc, char *argv[])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment