diff options
author | 2001-07-29 14:00:07 +0000 | |
---|---|---|
committer | 2001-07-29 14:00:07 +0000 | |
commit | 44e49b840613a1b1d1f99ba8cd36728d832e8bee (patch) | |
tree | b56bfeaff9d4cd3425e410f944e8bfd525f3a540 | |
parent | -Wunused for KAME case (diff) | |
download | wireguard-openbsd-44e49b840613a1b1d1f99ba8cd36728d832e8bee.tar.xz wireguard-openbsd-44e49b840613a1b1d1f99ba8cd36728d832e8bee.zip |
typo, add -Wunused
-rw-r--r-- | usr.bin/ssh/Makefile.inc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/ssh/Makefile.inc b/usr.bin/ssh/Makefile.inc index b96bb1f49d5..f2657fdbe9a 100644 --- a/usr.bin/ssh/Makefile.inc +++ b/usr.bin/ssh/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.18 2001/07/26 13:40:56 espie Exp $ +# $OpenBSD: Makefile.inc,v 1.19 2001/07/29 14:00:07 markus Exp $ CFLAGS+= -I${.CURDIR}/.. @@ -7,7 +7,8 @@ CDIAGFLAGS= -Wall CDIAGFLAGS+= -Wpointer-arith CDIAGFLAGS+= -Wno-uninitialized #CDIAGFLAGS+= -Wstrict-prototypes -CFDIAGLAGS+= -Wmissing-prototypes +CDIAGFLAGS+= -Wmissing-prototypes +CDIAGFLAGS+= -Wunused #DEBUG=-g |