fix: fix msg mask check issue
This commit is contained in:
parent
65636154ea
commit
85520d8c70
|
@ -218,7 +218,7 @@ typedef struct SEp {
|
|||
|
||||
#define SHOW_REWRITE_MASK() (1 << 0)
|
||||
|
||||
#define TEST_SHOW_REWRITE_MASK(m) ((m) & SHOW_REWRITE_MASK() != 0)
|
||||
#define TEST_SHOW_REWRITE_MASK(m) (((m) & SHOW_REWRITE_MASK()) != 0)
|
||||
|
||||
typedef struct {
|
||||
int32_t contLen;
|
||||
|
|
Loading…
Reference in New Issue