* commit '34138ece23':
  log: Use a do {} while (0) for tlog

Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
This commit is contained in:
Hendrik Leppkes 2015-12-18 14:50:54 +01:00
commit a38b50c3ff

View file

@ -62,7 +62,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, ...) do {} while(0) # define ff_tlog(ctx, ...) do { } while(0)
#endif #endif