aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-05-28 02:00:14 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-05-28 02:00:14 -0400
commit952b55fbdb52b8568a57b7f061056e15ef8dfffa (patch)
treef5b04bbdb40e5dd08738a62c598b88ffdd4ca138 /Makefile
parent31649edc7777e9cf6098cc7bf780f2f963b26d33 (diff)
Fix variable shadowing
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ad713dd..73d99b5 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ PREFIX=/usr/local
SYSCONFDIR=/etc
CFLAGS=-std=c11 -Werror -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -fPIC -flto=auto -fvisibility=hidden \
-fsanitize=signed-integer-overflow -fno-sanitize-recover
-CWARN=-Wall -Wextra -Wno-format
+CWARN=-Wall -Wextra -Wno-format -Wshadow
# -Wpedantic -Wsign-conversion -Wtype-limits -Wunused-result -Wnull-dereference \
# -Waggregate-return -Walloc-zero -Walloca -Warith-conversion -Wcast-align -Wcast-align=strict \
# -Wdangling-else -Wdate-time -Wdisabled-optimization -Wdouble-promotion -Wduplicated-branches \