summaryrefslogtreecommitdiff
path: root/libavformat/asfdec_f.c
diff options
context:
space:
mode:
authorSoft Works <softworkz@hotmail.com>2021-09-30 02:59:03 +0000
committerMichael Niedermayer <michael@niedermayer.cc>2021-09-30 14:02:27 +0200
commit35d784aca98fbb626cd0675cde52b739ddeffce8 (patch)
treeffb09a79440454fd1bffa09fd8fecefd5890eaef /libavformat/asfdec_f.c
parentc8cdf641c73899eceb785d95da95a827aedff713 (diff)
libavformat/asfdec: Add braces to define
Signed-off-by: softworkz <softworkz@hotmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/asfdec_f.c')
-rw-r--r--libavformat/asfdec_f.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/asfdec_f.c b/libavformat/asfdec_f.c
index 95063cbc14..a8f36ed286 100644
--- a/libavformat/asfdec_f.c
+++ b/libavformat/asfdec_f.c
@@ -149,7 +149,7 @@ static const ff_asf_guid asf_audio_conceal_none = {
};
#define PRINT_IF_GUID(g, cmp) \
- if (!ff_guidcmp(g, &cmp)) \
+ if (!ff_guidcmp(g, &(cmp))) \
av_log(NULL, AV_LOG_TRACE, "(GUID: %s) ", # cmp)
static void print_guid(ff_asf_guid *g)