From 527f1d22a1a462986715842b97018ef1accc1317 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 17 Feb 2015 00:05:51 +0100 Subject: avformat/tedcaptionsdec: add () to protect the argument of ERR_CODE() Signed-off-by: Michael Niedermayer --- libavformat/tedcaptionsdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat') diff --git a/libavformat/tedcaptionsdec.c b/libavformat/tedcaptionsdec.c index 68063fafbe..fb578ebc03 100644 --- a/libavformat/tedcaptionsdec.c +++ b/libavformat/tedcaptionsdec.c @@ -51,7 +51,7 @@ static const AVClass tedcaptions_demuxer_class = { #define HEX_DIGIT_TEST(c) (BETWEEN(c, '0', '9') || BETWEEN((c) | 32, 'a', 'z')) #define HEX_DIGIT_VAL(c) ((c) <= '9' ? (c) - '0' : ((c) | 32) - 'a' + 10) -#define ERR_CODE(c) (c < 0 ? c : AVERROR_INVALIDDATA) +#define ERR_CODE(c) ((c) < 0 ? (c) : AVERROR_INVALIDDATA) static void av_bprint_utf8(AVBPrint *bp, unsigned c) { -- cgit v1.2.3