summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2013-09-23 21:59:32 -0700
committerRussell Belfer <rb@github.com>2013-09-23 21:59:32 -0700
commita3c2d916d8ad67196d2211b0a88dcbab7a433764 (patch)
treee721fe558739fd7b8ac7e596132834dc9c6f1775
parent00e859279e361734aa38adfbbb16d25af0be8bda (diff)
downloadlibgit2-a3c2d916d8ad67196d2211b0a88dcbab7a433764.tar.gz
Fix warnings in Makefile.embed
-rw-r--r--Makefile.embed2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.embed b/Makefile.embed
index 2f3b057c7..eb8a78ebf 100644
--- a/Makefile.embed
+++ b/Makefile.embed
@@ -31,7 +31,7 @@ CC:=$(PREFIX)$(CC)
INCLUDES= -I. -Isrc -Iinclude -Ideps/http-parser -Ideps/zlib
DEFINES= $(INCLUDES) -DNO_VIZ -DSTDC -DNO_GZIP -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE $(EXTRA_DEFINES)
-CFLAGS= -g $(DEFINES) -Wall -Wextra -O2 $(EXTRA_CFLAGS)
+CFLAGS= -g $(DEFINES) -Wall -Wextra -Wno-missing-field-initializers -O2 $(EXTRA_CFLAGS)
SRCS = $(wildcard src/*.c) $(wildcard src/transports/*.c) $(wildcard src/xdiff/*.c) $(wildcard deps/http-parser/*.c) $(wildcard deps/zlib/*.c) src/hash/hash_generic.c