diff options
| author | Daniil Baturin <daniil@baturin.org> | 2025-02-11 15:38:21 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-11 15:38:21 +0000 |
| commit | b5bc748a38cf88e8fa52fb8f55bf8014a188a9b9 (patch) | |
| tree | e1ec6f8c5b80fc3b6ba33fdf13eab8174893990a /src/Makefile.am | |
| parent | 6ab29905c094db8b961c64e1468a7ff274281352 (diff) | |
| download | ipaddrcheck-b5bc748a38cf88e8fa52fb8f55bf8014a188a9b9.tar.gz ipaddrcheck-b5bc748a38cf88e8fa52fb8f55bf8014a188a9b9.zip | |
T7156: suppress sprintf format warnings at the source level (#13)
rather than with CFLAGS, so that it applies only to locations
where it was proven safe and is protected against CFLAGS overrides
Diffstat (limited to 'src/Makefile.am')
| -rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 1c43bae..6098ae5 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,4 +1,4 @@ -AM_CFLAGS = --pedantic -Wall -Werror -Wno-error=format-overflow= -std=c99 -O2 +AM_CFLAGS = --pedantic -Wall -Werror -std=c99 -O2 AM_LDFLAGS = ipaddrcheck_SOURCES = ipaddrcheck.c ipaddrcheck_functions.c |
