]> git.saurik.com Git - redis.git/blobdiff - sds.h
CPP client added thanks to Brian Hammond
[redis.git] / sds.h
diff --git a/sds.h b/sds.h
index ba2a5ca0b6ce8c749f2064198dcbd380cf680d46..0fc2c9281ba9e9153395cc0c33169fc5deb86833 100644 (file)
--- a/sds.h
+++ b/sds.h
@@ -38,7 +38,7 @@ typedef char *sds;
 struct sdshdr {
     long len;
     long free;
 struct sdshdr {
     long len;
     long free;
-    char buf[0];
+    char buf[];
 };
 
 sds sdsnewlen(const void *init, size_t initlen);
 };
 
 sds sdsnewlen(const void *init, size_t initlen);