Skip to content
Snippets Groups Projects
Commit 3c7d3d27 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

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

parent 0a6b410e
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,7 @@ ...@@ -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[])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment