aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTest_User <hax@andrewyu.org>2024-08-10 06:00:09 -0400
committerTest_User <hax@andrewyu.org>2024-08-10 06:00:09 -0400
commitfa2ccc41527a1d81eb25c267549823efeb58a41f (patch)
tree90c890870aefeb6b764d9fa6768b2cce06ab61de
parentd9bb48573e81207ab7134c9dce7e1e210ecadfd6 (diff)
downloadhaxircd-fa2ccc41527a1d81eb25c267549823efeb58a41f.tar.gz
haxircd-fa2ccc41527a1d81eb25c267549823efeb58a41f.zip
alloc-size warning is useless for here. It will only ever catch zero-length arrays, which are actually intended to be zero-length, and are thereby not a problem.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 44c17f7..85f2185 100644
--- a/Makefile
+++ b/Makefile
@@ -247,7 +247,7 @@ ifeq ($(rebuild),1)
.PHONY: .makeopts
endif
-CFLAGS += $(INCLUDEFLAGS) -D_REENTRANT -ggdb3 -Wall -Wextra -Wsign-conversion -Wno-unused-parameter -Wno-implicit-fallthrough -std=gnu99
+CFLAGS += $(INCLUDEFLAGS) -D_REENTRANT -ggdb3 -Wall -Wextra -Wsign-conversion -Wno-unused-parameter -Wno-implicit-fallthrough -Wno-alloc-size -std=gnu99
USE_PLAINTEXT = 0
USE_CLIENT = 0