summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1997-01-16 00:35:53 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1997-01-16 00:35:53 +0000
commitb678783cd46296b4fd2498113aecbbcac3aa8ef8 (patch)
tree0bf9de11a54c0358947d059300f0e45a1c2bc589 /sbin
parent552d265b6ced1e56d31f20f16a7fe9ae818d568b (diff)
getopt(3) returns an int, not char.
Diffstat (limited to 'sbin')
-rw-r--r--sbin/bim/bim.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/bim/bim.c b/sbin/bim/bim.c
index bbb52f522ed..41f1fe63f8c 100644
--- a/sbin/bim/bim.c
+++ b/sbin/bim/bim.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bim.c,v 1.3 1997/01/15 23:41:09 millert Exp $ */
+/* $OpenBSD: bim.c,v 1.4 1997/01/16 00:35:52 millert Exp $ */
/* $NetBSD: bim.c,v 1.4 1995/09/28 07:08:49 phil Exp $ */
/*
@@ -610,7 +610,7 @@ char *argv[];
char *argcmds[MAXARGCMDS];
extern int optind, opterr;
extern char *optarg;
- char optchar;
+ int optchar;
int index;
/* Check the parameters. */