diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-09-15 15:59:45 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-09-15 15:59:45 +0000 |
commit | ea1e273a6636afc6844830f1aee169bbdf6a3efc (patch) | |
tree | b7d0532159d4fbda3e62b068a74a557375717b21 /usr.bin/uudecode/uudecode.c | |
parent | a2575690cf0b8e9075efc784f8b5914744aaf483 (diff) |
getopt returns int, not char; rahnds@openbsd.org
Diffstat (limited to 'usr.bin/uudecode/uudecode.c')
-rw-r--r-- | usr.bin/uudecode/uudecode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/uudecode/uudecode.c b/usr.bin/uudecode/uudecode.c index 2a68977be77..9cd42de775a 100644 --- a/usr.bin/uudecode/uudecode.c +++ b/usr.bin/uudecode/uudecode.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uudecode.c,v 1.6 1998/08/31 02:13:41 dgregor Exp $ */ +/* $OpenBSD: uudecode.c,v 1.7 1998/09/15 15:59:44 millert Exp $ */ /* $NetBSD: uudecode.c,v 1.6 1994/11/17 07:40:43 jtc Exp $ */ /*- @@ -42,7 +42,7 @@ char copyright[] = #if 0 static char sccsid[] = "@(#)uudecode.c 8.2 (Berkeley) 4/2/94"; #endif -static char rcsid[] = "$OpenBSD: uudecode.c,v 1.6 1998/08/31 02:13:41 dgregor Exp $"; +static char rcsid[] = "$OpenBSD: uudecode.c,v 1.7 1998/09/15 15:59:44 millert Exp $"; #endif /* not lint */ /* @@ -74,7 +74,7 @@ main(argc, argv) char *argv[]; { int rval; - char ch; + int ch; int tostdout = 0; setlocale(LC_ALL, ""); |