]> git.saurik.com Git - redis.git/commitdiff
now Redis is C99-ok
authorantirez <antirez@gmail.com>
Fri, 27 Mar 2009 20:37:57 +0000 (21:37 +0100)
committerantirez <antirez@gmail.com>
Fri, 27 Mar 2009 20:37:57 +0000 (21:37 +0100)
Makefile
sds.h

index e45899e9108020d8d71534b0135ce00b847d5a95..58afaa23756a1dc8d71cb1c7ab89576af7a9f9ea 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
 # This file is released under the BSD license, see the COPYING file
 
 DEBUG?= -g
-CFLAGS?= -O2 -Wall -W -DSDS_ABORT_ON_OOM
+CFLAGS?= -std=c99 -pedantic -O2 -Wall -W -DSDS_ABORT_ON_OOM
 CCOPT= $(CFLAGS)
 
 OBJ = adlist.o ae.o anet.o dict.o redis.o sds.o zmalloc.o
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;
-    char buf[0];
+    char buf[];
 };
 
 sds sdsnewlen(const void *init, size_t initlen);