aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2021-05-31 10:32:48 -0700
committerBruce Hill <bruce@bruce-hill.com>2021-05-31 10:32:48 -0700
commit0443fbb06387138fc88be80104bef102246fdd25 (patch)
tree05259bcf5da0ad76aa62753c69b105ccc64d2370 /Makefile
parentaa1faea83ccb60ae5c1918849dd62e377b7c7263 (diff)
Added warning flag for null derefs
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 23ff090..a107318 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ CC=cc
PREFIX=/usr/local
SYSCONFDIR=/etc
CFLAGS=-std=c99 -Werror -D_XOPEN_SOURCE=700 -D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L
-CWARN=-Wall -Wpedantic -Wextra -Wsign-conversion -Wtype-limits -Wunused-result
+CWARN=-Wall -Wpedantic -Wextra -Wsign-conversion -Wtype-limits -Wunused-result -Wnull-dereference
EXTRA=
G=
O=-O3