From 53b682f3a2002d16ed43c7cad08a485eedc5dc3e Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Thu, 18 May 2006 21:23:38 +0000 Subject: [PATCH] Re-enable -Wformat, since our printf() is now more standards-conformant. --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index cd8f7e33..77d2fc93 100644 --- a/src/Makefile +++ b/src/Makefile @@ -89,7 +89,7 @@ BIN ?= bin # CFLAGS += -I include -I arch/$(ARCH)/include -I . -DARCH=$(ARCH) CFLAGS += -Os -ffreestanding -CFLAGS += -Wall -W -Wno-format +CFLAGS += -Wall -W CFLAGS += -g CFLAGS += $(EXTRA_CFLAGS) ASFLAGS += $(EXTRA_ASFLAGS)