commit f01674957f6816d55b8ed1b38a96c4ef5e3120b2
parent d56ad5ac8ac47037a86d52e3445e3c5d4dc81a4b
Author: Laslo Hunhold <dev@frign.de>
Date: Sun, 1 Sep 2024 14:57:28 +0200
Don't warn about overlength strings in test data
Signed-off-by: Laslo Hunhold <dev@frign.de>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config.mk b/config.mk
@@ -15,7 +15,7 @@ BINSUFFIX =
# flags
CPPFLAGS = -D_ISOC99_SOURCE
-CFLAGS = -std=c99 -Os -Wall -Wextra -Wpedantic
+CFLAGS = -std=c99 -Os -Wall -Wextra -Wpedantic -Wno-overlength-strings
LDFLAGS = -s
BUILD_CPPFLAGS = $(CPPFLAGS)