diff options
author | 2001-11-28 20:28:08 +0000 | |
---|---|---|
committer | 2001-11-28 20:28:08 +0000 | |
commit | b665ac785bdda07ab208ec1640c941bc47b0b553 (patch) | |
tree | 9acf1d4a8ca6beb9b6065f6d57de9fbe44faf7d1 | |
parent | Add tag line. Thanks to David Krause (diff) | |
download | wireguard-openbsd-b665ac785bdda07ab208ec1640c941bc47b0b553.tar.xz wireguard-openbsd-b665ac785bdda07ab208ec1640c941bc47b0b553.zip |
remove unused var
-rw-r--r-- | usr.bin/systat/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/systat/main.c b/usr.bin/systat/main.c index b3984c8ecad..3638d46cf58 100644 --- a/usr.bin/systat/main.c +++ b/usr.bin/systat/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.18 2001/11/23 22:20:06 deraadt Exp $ */ +/* $OpenBSD: main.c,v 1.19 2001/11/28 20:28:08 ericj Exp $ */ /* $NetBSD: main.c,v 1.8 1996/05/10 23:16:36 thorpej Exp $ */ /*- @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/6/93"; #endif -static char rcsid[] = "$OpenBSD: main.c,v 1.18 2001/11/23 22:20:06 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: main.c,v 1.19 2001/11/28 20:28:08 ericj Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -89,7 +89,7 @@ main(argc, argv) int argc; char **argv; { - int ch, ret; + int ch; char errbuf[_POSIX2_LINE_MAX]; while ((ch = getopt(argc, argv, "w:")) != -1) |