Commit 0b638b83 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/mpc8: Add () to protect MKMPCTAG()s arguments

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 23578226
......@@ -27,7 +27,7 @@
#include "avio_internal.h"
/// Two-byte MPC tag
#define MKMPCTAG(a, b) (a | (b << 8))
#define MKMPCTAG(a, b) ((a) | ((b) << 8))
#define TAG_MPCK MKTAG('M','P','C','K')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment