From e894a26cf538f8341b93acf6ececc3df88125bc7 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Mon, 9 Aug 2021 16:50:59 +0200 Subject: Makefile: make incompatible pointer types fatal --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4203428..2253be0 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ ALL=hittpd OBJ=hittpd.o http-parser/http_parser.o -CFLAGS=-g -O2 -Wall -Wno-switch -Wextra -Wwrite-strings +CFLAGS=-g -O2 -Wall -Wno-switch -Wextra -Wwrite-strings -Werror=incompatible-pointer-types CPPFLAGS=-Ihttp-parser DESTDIR= -- cgit 1.4.1