From bb774d8c4fd069c8a9f7fd521192182a43729dad Mon Sep 17 00:00:00 2001 From: int3 Date: Fri, 14 May 2010 17:30:35 +0800 Subject: [PATCH] Suppress warnings of zero-length format strings (caused by previous fix) --- config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.mk b/config.mk index 6671a83..d3c7150 100644 --- a/config.mk +++ b/config.mk @@ -15,7 +15,7 @@ INCS = -I. -I/usr/include ${GTK_INC} LIBS = -lc ${GTK_LIB} -lpthread # flags -CFLAGS += -std=c99 -pedantic -Wall $(INCS) +CFLAGS += -std=c99 -pedantic -Wall -Wno-format-zero-length $(INCS) # debug DFLAGS = -g