fix: fix msg mask check issue

This commit is contained in:
dapan1121 2022-11-04 15:10:42 +08:00
parent 65636154ea
commit 85520d8c70
1 changed files with 1 additions and 1 deletions

View File

@ -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;