other: naming optimization for exp wnds

This commit is contained in:
Cary Xu 2022-06-04 18:49:39 +08:00
parent 420489e842
commit bae6bed2bd
1 changed files with 2 additions and 2 deletions

View File

@ -2402,8 +2402,8 @@ typedef struct {
} SVGetTsmaExpWndsReq; } SVGetTsmaExpWndsReq;
#define SMA_WNDS_EXPIRE_FLAG (0x1) #define SMA_WNDS_EXPIRE_FLAG (0x1)
#define SMA_WNDS_IS_EXPIRE(flag) (((flag)&EXP_WNDS_EXPIRE_FLAG) != 0) #define SMA_WNDS_IS_EXPIRE(flag) (((flag)&SMA_WNDS_EXPIRE_FLAG) != 0)
#define SMA_WNDS_SET_EXPIRE(flag) ((flag) |= EXP_WNDS_EXPIRE_FLAG) #define SMA_WNDS_SET_EXPIRE(flag) ((flag) |= SMA_WNDS_EXPIRE_FLAG)
typedef struct { typedef struct {
int64_t indexUid; int64_t indexUid;