From 9e15e076c1f3e647b1f7ed7e3c12a1f23fdbe98c Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Wed, 4 Nov 2020 12:04:55 -0500 Subject: Enable -Wsign-compare to catch bugs like 726d7801 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 21c15be..4e67cf6 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ INSTALL ?= install MKDIR ?= mkdir -p RM ?= rm -f -WFLAGS ?= -Wall -Wmissing-declarations -Wstrict-prototypes +WFLAGS ?= -Wall -Wmissing-declarations -Wstrict-prototypes -Wsign-compare CFLAGS ?= -g $(WFLAGS) LDFLAGS ?= DEPFLAGS ?= -MD -MP -MF $(@:.o=.d) -- cgit v1.2.3