diff options
author | 2002-02-23 21:23:46 +0000 | |
---|---|---|
committer | 2002-02-23 21:23:46 +0000 | |
commit | 41770c1a5c6bbf507f4daaa539384b51e6a458f5 (patch) | |
tree | 9427bed05198de318edc92fd5301cda8188d715d | |
parent | getc() returns an int (diff) | |
download | wireguard-openbsd-41770c1a5c6bbf507f4daaa539384b51e6a458f5.tar.xz wireguard-openbsd-41770c1a5c6bbf507f4daaa539384b51e6a458f5.zip |
getc() returns an int
-rw-r--r-- | sbin/fsck_ext2fs/utilities.c | 4 | ||||
-rw-r--r-- | sbin/fsck_ffs/utilities.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sbin/fsck_ext2fs/utilities.c b/sbin/fsck_ext2fs/utilities.c index b06c4a5452c..b14837c2b05 100644 --- a/sbin/fsck_ext2fs/utilities.c +++ b/sbin/fsck_ext2fs/utilities.c @@ -1,4 +1,4 @@ -/* $OpenBSD: utilities.c,v 1.10 2002/02/16 21:27:34 millert Exp $ */ +/* $OpenBSD: utilities.c,v 1.11 2002/02/23 21:23:46 deraadt Exp $ */ /* $NetBSD: utilities.c,v 1.6 2001/02/04 21:19:34 christos Exp $ */ /* @@ -84,7 +84,7 @@ reply(question) char *question; { int persevere; - char c; + int c; if (preen) pfatal("INTERNAL ERROR: GOT TO reply()"); diff --git a/sbin/fsck_ffs/utilities.c b/sbin/fsck_ffs/utilities.c index bfcbc0a3b9a..2ed0fbbd5fe 100644 --- a/sbin/fsck_ffs/utilities.c +++ b/sbin/fsck_ffs/utilities.c @@ -1,4 +1,4 @@ -/* $OpenBSD: utilities.c,v 1.14 2002/02/16 21:27:34 millert Exp $ */ +/* $OpenBSD: utilities.c,v 1.15 2002/02/23 21:23:46 deraadt Exp $ */ /* $NetBSD: utilities.c,v 1.18 1996/09/27 22:45:20 christos Exp $ */ /* @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)utilities.c 8.1 (Berkeley) 6/5/93"; #else -static char rcsid[] = "$OpenBSD: utilities.c,v 1.14 2002/02/16 21:27:34 millert Exp $"; +static char rcsid[] = "$OpenBSD: utilities.c,v 1.15 2002/02/23 21:23:46 deraadt Exp $"; #endif #endif /* not lint */ @@ -93,7 +93,7 @@ reply(question) char *question; { int persevere; - char c; + int c; if (preen) pfatal("INTERNAL ERROR: GOT TO reply()"); |