From bb1b430ada4510375f070f42d5474c7ce24bf5bf Mon Sep 17 00:00:00 2001 From: Martins Mozeiko Date: Sun, 15 Jul 2018 12:42:51 -0700 Subject: [PATCH] ignore unnecessary warnings fixes #18 --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 41e84a8..9058437 100644 --- a/makefile +++ b/makefile @@ -10,7 +10,7 @@ SRC=${wildcard pkg2zip*.c} miniz_tdef.c puff.c OBJ=${SRC:.c=.o} DEP=${SRC:.c=.d} -CFLAGS=-std=c99 -pipe -fvisibility=hidden -Wall -Wextra -Werror -DNDEBUG -D_GNU_SOURCE -O2 +CFLAGS=-std=c99 -pipe -fvisibility=hidden -Wall -Wextra -Werror -Wno-format-truncation -DNDEBUG -D_GNU_SOURCE -O2 LDFLAGS=-s .PHONY: all clean