log: Use a do {} while (0) for dlog

Avoid the warning `-Wempty-body`.
pull/164/head
Luca Barbato 9 years ago
parent 7d36474d19
commit 6788baebb3
  1. 2
      libavcodec/internal.h

@ -57,7 +57,7 @@
#ifdef DEBUG
# define ff_dlog(ctx, ...) av_log(ctx, AV_LOG_DEBUG, __VA_ARGS__)
#else
# define ff_dlog(ctx, ...) while(0)
# define ff_dlog(ctx, ...) do { } while (0)
#endif
#ifdef TRACE

Loading…
Cancel
Save