data type compatible with windows

This commit is contained in:
Jeff Tao 2020-11-27 07:41:35 +00:00
parent 4b09f05290
commit 15691bfb08
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ typedef struct SHashNode {
struct SHashNode *next;
uint32_t hashVal; // the hash value of key
uint32_t keyLen; // length of the key
uint32_t dataLen; // length of data
size_t dataLen; // length of data
int8_t count; // reference count
int8_t removed; // flag to indicate removed
char data[];