diff --git a/src/util/inc/hash.h b/src/util/inc/hash.h index 572f1a50c6e0f983b1122d2f575394d58cd41517..b0319d3e139f72bdaff7993e2e46d61b82c4d0a5 100644 --- a/src/util/inc/hash.h +++ b/src/util/inc/hash.h @@ -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[];