fix(query): fix syntax error.

This commit is contained in:
Haojun Liao 2022-09-03 11:08:36 +08:00
parent b159d3cdf5
commit 4ace5bef9c
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ struct SRBTreeNode {
SRBTreeNode *parent;
SRBTreeNode *left;
SRBTreeNode *right;
uint8_t payload[];
uint8_t payload[0];
};
struct SRBTree {