Globally enable -Wall warnings for GCC

This commit is contained in:
Erik van der Kouwe
2011-06-08 19:19:45 +00:00
parent 900a273d3d
commit c2da8cb535
9 changed files with 4 additions and 13 deletions

View File

@@ -399,8 +399,6 @@ PRIVATE void init_drive(struct wini *w, int base_cmd, int base_ctl,
}
PRIVATE int quirkmatch(struct quirk *table, u8_t bcr, u8_t scr, u8_t interface, u16_t vid, u16_t did) {
int i = 0;
while(table->vendor) {
if(table->vendor == vid && table->device == did &&
table->pci_class == bcr &&

View File

@@ -12,6 +12,6 @@ MAN=
BINDIR?= /usr/sbin
debug= 0
CPPFLAGS+= -Ddebug=${debug} -ws -w -Wall
CPPFLAGS+= -Ddebug=${debug} -w
.include <bsd.prog.mk>