Don't use -Wcast-qual and use explicit casts to shut gcc up in the few cases we can't avoid using a char *.

This commit is contained in:
Nicholas Marriott
2009-05-15 12:57:36 +00:00
parent 8913d853e4
commit 0b54a2d723
4 changed files with 13 additions and 13 deletions

View File

@ -1,4 +1,4 @@
# $Id: GNUmakefile,v 1.102 2009-05-14 19:32:37 nicm Exp $
# $Id: GNUmakefile,v 1.103 2009-05-15 12:57:36 nicm Exp $
.PHONY: clean
@ -25,7 +25,7 @@ CFLAGS+= -g -ggdb -DDEBUG
LIBS+= -ldl
CFLAGS+= -Wno-long-long -Wall -W -Wnested-externs -Wformat=2
CFLAGS+= -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations
CFLAGS+= -Wwrite-strings -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare
CFLAGS+= -Wwrite-strings -Wshadow -Wpointer-arith -Wsign-compare
CFLAGS+= -Wundef -Wbad-function-cast -Winline -Wcast-align
endif