From 573af7545e2c8f9951a7968a01c0790f02816388 Mon Sep 17 00:00:00 2001 From: Benoit Fouet Date: Mon, 23 Aug 2010 15:31:50 +0000 Subject: [PATCH] Add missing parentheses to AV_NE macro. Originally committed as revision 24885 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavutil/common.h b/libavutil/common.h index ce2dc41..d054f87 100644 --- a/libavutil/common.h +++ b/libavutil/common.h @@ -38,9 +38,9 @@ #include "libavutil/avconfig.h" #if AV_HAVE_BIGENDIAN -# define AV_NE(be, le) be +# define AV_NE(be, le) (be) #else -# define AV_NE(be, le) le +# define AV_NE(be, le) (le) #endif //rounded division & shift -- 2.7.4