diff --git a/src/common/symdefs.h b/src/common/symdefs.h index ede76d63e..69a42f024 100644 --- a/src/common/symdefs.h +++ b/src/common/symdefs.h @@ -76,7 +76,7 @@ #define EXP_INIT 0x04 /* Mask bit for initializer export */ #define EXP_MASK_INIT 0x04 /* Value mask */ -#define IS_EXP_INIT (((x) & EXP_MASK_INIT) == EXP_INIT) +#define IS_EXP_INIT(x) (((x) & EXP_MASK_INIT) == EXP_INIT)