summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2006-07-30 15:30:00 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2006-07-30 15:30:00 +0000
commit6c6ec47a0eb182a224941bb3f4eee72cb3634b16 (patch)
tree2fdd39f98883a3d5a598eec6eadae1bdadb80bf6 /libavformat
parentadb0208bf2658215833a9e5b119aeab38d214100 (diff)
use parenthesis around value
Originally committed as revision 5866 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/mxf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mxf.c b/libavformat/mxf.c
index e64267b185..938a698d00 100644
--- a/libavformat/mxf.c
+++ b/libavformat/mxf.c
@@ -165,7 +165,7 @@ static const uint8_t mxf_essence_element_key[] = { 0x06,0x0e,0x2b,0x
#define IS_KLV_KEY(x, y) (!memcmp(x, y, sizeof(y)))
#define PRINT_KEY(x) dprintf("%02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X\n", \
- x[0], x[1], x[2], x[3], x[4], x[5], x[6], x[7], x[8], x[9], x[10], x[11], x[12], x[13], x[14], x[15])
+ (x)[0], (x)[1], (x)[2], (x)[3], (x)[4], (x)[5], (x)[6], (x)[7], (x)[8], (x)[9], (x)[10], (x)[11], (x)[12], (x)[13], (x)[14], (x)[15])
static int64_t klv_decode_ber_length(ByteIOContext *pb)
{