summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorEric Jackson <ericj@cvs.openbsd.org>2001-11-28 20:28:09 +0000
committerEric Jackson <ericj@cvs.openbsd.org>2001-11-28 20:28:09 +0000
commitadad6dbe2d36949909227ca993596bdadf97568b (patch)
tree1ff124be5e55c008c6d29329dc325c1e23df7cbd /usr.bin
parentd941d7fa53551eb5591671467f1a2d0f0d35ad35 (diff)
remove unused var
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/systat/main.c6
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)