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

Avoid the warning `-Wempty-body`.
pull/167/head
Luca Barbato 9 years ago
parent febfb49a70
commit 34138ece23
  1. 2
      libavcodec/internal.h

@ -63,7 +63,7 @@
#ifdef TRACE #ifdef TRACE
# define ff_tlog(ctx, ...) av_log(ctx, AV_LOG_TRACE, __VA_ARGS__) # define ff_tlog(ctx, ...) av_log(ctx, AV_LOG_TRACE, __VA_ARGS__)
#else #else
# define ff_tlog(ctx, ...) while(0) # define ff_tlog(ctx, ...) do { } while (0)
#endif #endif

Loading…
Cancel
Save