Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2015-12-18 16:50:54 +0300
committerHendrik Leppkes <h.leppkes@gmail.com>2015-12-18 16:50:54 +0300
commita38b50c3ff0b49cf4c04196ff889d35f105b50c8 (patch)
treeee21b546c5dab04089b642d7c684cb5ff74304ea /libavcodec/internal.h
parent5242cc878a7ac471ab0a8c42bb8945f072765fd6 (diff)
parent34138ece23c8ddae543269212a051c00d49e67d7 (diff)
Merge commit '34138ece23c8ddae543269212a051c00d49e67d7'
* commit '34138ece23c8ddae543269212a051c00d49e67d7': log: Use a do {} while (0) for tlog Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
Diffstat (limited to 'libavcodec/internal.h')
-rw-r--r--libavcodec/internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/internal.h b/libavcodec/internal.h
index 482d8debcd..24d320c186 100644
--- a/libavcodec/internal.h
+++ b/libavcodec/internal.h
@@ -62,7 +62,7 @@
#ifdef TRACE
# define ff_tlog(ctx, ...) av_log(ctx, AV_LOG_TRACE, __VA_ARGS__)
#else
-# define ff_tlog(ctx, ...) do {} while(0)
+# define ff_tlog(ctx, ...) do { } while(0)
#endif