From e8832a8acfbd192857705db7cc2ef60d4b2b43d9 Mon Sep 17 00:00:00 2001 From: Sean Farley Date: Sun, 6 Oct 2013 08:46:33 +0800 Subject: [PATCH] makefile: add -Wno-missing-field-initializers since {0} is valid C99 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c64c804..e85240c 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ #OptDbg=-O3 #OptDbg=-O3 -march=pentium2 OptDbg=-ggdb -CFLAGS=$(OptDbg) -I. -Wall -Werror -Wstrict-prototypes -Wextra -Wno-unused-parameter +CFLAGS=$(OptDbg) -I. -Wall -Werror -Wstrict-prototypes -Wextra -Wno-unused-parameter -Wno-missing-field-initializers # STRIP = -s INSTALL = /usr/bin/install -- 2.39.5