From faf91508e22494c49217943c90b13b30fcf699c0 Mon Sep 17 00:00:00 2001 From: Lior Halphon Date: Thu, 17 Sep 2020 23:25:56 +0300 Subject: [PATCH] Yes, I *do* mean -Wno-maybe-uninitialized! --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index df0ba439..be522874 100644 --- a/Makefile +++ b/Makefile @@ -108,7 +108,7 @@ endif # GCC's implementation of this warning has false positives, so we skip it ifneq ($(shell $(CC) --version 2>&1 | grep "gcc"), ) -WARNINGS += -no-maybe-uninitialized +WARNINGS += -Wno-maybe-uninitialized endif CFLAGS += $(WARNINGS)