chore: fix the SHbParam definition

This commit is contained in:
kailixu 2023-04-24 14:17:13 +08:00
parent e27cdfd5c0
commit d5d113aed7
1 changed files with 4 additions and 2 deletions

View File

@ -21,8 +21,10 @@
typedef struct {
union {
int64_t clusterId;
int32_t passKeyCnt;
struct {
int64_t clusterId;
int32_t passKeyCnt;
};
};
} SHbParam;