summaryrefslogtreecommitdiff
path: root/usr.bin/modstat
diff options
context:
space:
mode:
authorEric Jackson <ericj@cvs.openbsd.org>2002-05-24 07:03:36 +0000
committerEric Jackson <ericj@cvs.openbsd.org>2002-05-24 07:03:36 +0000
commit9324f4ea469f043a09bc68a9839031f90bf5d351 (patch)
tree15d91806127a056c074d44e028b1ff21e2bc75c8 /usr.bin/modstat
parent0012865031b0598dc5e97bbfdf6be23e4a02cade (diff)
minor cleanup
get rid of statics deraadt@ OK
Diffstat (limited to 'usr.bin/modstat')
-rw-r--r--usr.bin/modstat/modstat.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/modstat/modstat.c b/usr.bin/modstat/modstat.c
index f1d3a37cc8b..795bc50b2a4 100644
--- a/usr.bin/modstat/modstat.c
+++ b/usr.bin/modstat/modstat.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: modstat.c,v 1.17 2002/01/09 18:19:28 ericj Exp $ */
+/* $OpenBSD: modstat.c,v 1.18 2002/05/24 07:03:35 ericj Exp $ */
/*
* Copyright (c) 1993 Terrence R. Lambert.
@@ -57,7 +57,6 @@ static char *type_names[] = {
"EXEC",
"MISC"
};
-static int devfd;
static void
usage()
@@ -114,6 +113,7 @@ main(argc, argv)
int c, modnum = -1;
char *modname = NULL;
char *endptr;
+ int devfd;
while ((c = getopt(argc, argv, "i:n:")) != -1) {
switch (c) {
@@ -121,7 +121,6 @@ main(argc, argv)
modnum = (int)strtol(optarg, &endptr, 0);
if (modnum < 0 || modnum > INT_MAX || *endptr != '\0')
errx(1, "%s: not a valid number", optarg);
- modnum = atoi(optarg);
break;
case 'n':
modname = optarg;