X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/ed9b544e10b84cd43348ddfab7068b610a5df1f7..57172ffb316b5e681c4f515927894f5129739237:/sds.h diff --git a/sds.h b/sds.h index ba2a5ca0..0fc2c928 100644 --- a/sds.h +++ b/sds.h @@ -38,7 +38,7 @@ typedef char *sds; struct sdshdr { long len; long free; - char buf[0]; + char buf[]; }; sds sdsnewlen(const void *init, size_t initlen);