summaryrefslogtreecommitdiff
path: root/deps/hiredis/sds.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/hiredis/sds.h')
-rw-r--r--deps/hiredis/sds.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/hiredis/sds.h b/deps/hiredis/sds.h
index 9a604021c..37aaf7a28 100644
--- a/deps/hiredis/sds.h
+++ b/deps/hiredis/sds.h
@@ -39,8 +39,8 @@
typedef char *sds;
struct sdshdr {
- int len;
- int free;
+ unsigned int len;
+ unsigned int free;
char buf[];
};