Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/littlefs-project/littlefs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Haster <chaster@utexas.edu>2018-09-26 18:11:40 +0300
committerChristopher Haster <chaster@utexas.edu>2018-09-27 02:58:54 +0300
commit646b1b5a6ce432aa0c5c0ecbd9f1d1ee330c2f03 (patch)
treeb0978e4b01db9a996cc24d1fac887c5276ec2863 /Makefile
parent1b7a15599e3d33f76a3163fc736dafb67976cd4e (diff)
Added -Wjump-misses-init and fixed uninitialized warnings
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 99a3c0c..020942f 100644
--- a/Makefile
+++ b/Makefile
@@ -25,7 +25,8 @@ ifdef WORD
override CFLAGS += -m$(WORD)
endif
override CFLAGS += -I.
-override CFLAGS += -std=c99 -Wall -pedantic -Wshadow -Wunused-parameter
+override CFLAGS += -std=c99 -Wall -pedantic
+override CFLAGS += -Wshadow -Wunused-parameter -Wjump-misses-init
all: $(TARGET)