diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2005-07-30 17:18:25 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2005-07-30 17:18:25 +0000 |
commit | c93df77f739de7e1a15fe7660957de4cab520311 (patch) | |
tree | 5821f3cb3e89f2b747d6d525f54f550f89da32c7 /usr.sbin/hostapd/Makefile | |
parent | cfc519e6e9192f2d08e8550d7653c66c22397551 (diff) |
enable -Wbounded
ok anil
Diffstat (limited to 'usr.sbin/hostapd/Makefile')
-rw-r--r-- | usr.sbin/hostapd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/hostapd/Makefile b/usr.sbin/hostapd/Makefile index fabb4bce5cd..5b4774d7242 100644 --- a/usr.sbin/hostapd/Makefile +++ b/usr.sbin/hostapd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 2005/06/17 19:13:35 reyk Exp $ +# $OpenBSD: Makefile,v 1.4 2005/07/30 17:18:24 reyk Exp $ PROG= hostapd SRCS= privsep.c apme.c handle.c iapp.c llc.c hostapd.c print-802_11.c parse.y @@ -8,7 +8,7 @@ CFLAGS+= -Wall -I${.CURDIR} CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes CFLAGS+= -Wmissing-declarations CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual -CFLAGS+= -Wsign-compare +CFLAGS+= -Wsign-compare -Wbounded CLEANFILES= y.tab.h .include <bsd.prog.mk> |