summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2012-12-13 17:36:38 +0000
committerVincent Sanders <vince@netsurf-browser.org>2012-12-13 17:49:27 +0000
commitfa6e1379d0cc8c904c60251eee55d58dabf60784 (patch)
treea9a9ac9da6429ba2a48833de22ec9cf6d0052cb9 /Makefile
parent16d67095a6731f329bad971985e8983cdc054efe (diff)
downloadnetsurf-fa6e1379d0cc8c904c60251eee55d58dabf60784.tar.gz
netsurf-fa6e1379d0cc8c904c60251eee55d58dabf60784.tar.bz2
move the cut n pasted -Wuninitialized from Makefile.config alongside
all the other warning flags in the standard location
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 91f3aac08..a1c6e5dbc 100644
--- a/Makefile
+++ b/Makefile
@@ -400,7 +400,7 @@ endef
WARNFLAGS = -W -Wall -Wundef -Wpointer-arith \
-Wcast-align -Wwrite-strings -Wstrict-prototypes \
-Wmissing-prototypes -Wmissing-declarations -Wredundant-decls \
- -Wnested-externs
+ -Wnested-externs -Wuninitialized
ifneq ($(GCCVER),2)
WARNFLAGS += -Wno-unused-parameter
endif