commit f01674957f6816d55b8ed1b38a96c4ef5e3120b2 Author: Laslo Hunhold <d...@frign.de> AuthorDate: Sun Sep 1 14:57:28 2024 +0200 Commit: Laslo Hunhold <d...@frign.de> CommitDate: Sun Sep 1 14:57:28 2024 +0200
Don't warn about overlength strings in test data Signed-off-by: Laslo Hunhold <d...@frign.de> diff --git a/config.mk b/config.mk index c5284c5..f477480 100644 --- 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)