mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-12-26 22:06:00 +01:00
Suppress warnings of zero-length format strings (caused by previous fix)
This commit is contained in:
parent
ac0445457c
commit
bb774d8c4f
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue