diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2017-08-25 12:29:43 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2017-08-25 12:29:43 +0000 |
commit | 3ef701c0df12657bae74418751128e43c696d5c5 (patch) | |
tree | 3e7f21afba87287d564e8a6d72759e7bc712b1fc /usr.sbin/rbootd | |
parent | f34dd2fa3932fed379c441a21ed84144196164b8 (diff) |
-Wextra is over the top; note that int < sizeof(..) is generally safe, since
the left hand side gets converted to size_t, making negative values very large
so the test fails; ok kettenis deraadt@
Diffstat (limited to 'usr.sbin/rbootd')
-rw-r--r-- | usr.sbin/rbootd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rbootd/Makefile b/usr.sbin/rbootd/Makefile index 74cb35dbc04..e9309804e49 100644 --- a/usr.sbin/rbootd/Makefile +++ b/usr.sbin/rbootd/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.6 2016/05/29 02:19:02 guenther Exp $ +# $OpenBSD: Makefile,v 1.7 2017/08/25 12:29:42 otto Exp $ PROG= rbootd SRCS= bpf.c conf.c parseconf.c rbootd.c rmpproto.c utils.c MAN= rbootd.8 -CFLAGS+=-Wall -Wextra +CFLAGS+=-Wall .include <bsd.prog.mk> |