diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-02-23 21:18:12 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-02-23 21:18:12 +0000 |
commit | 86eb26347856298986c34904c6b841364b8a9610 (patch) | |
tree | 2d54a4fce686db7e851a04ceb8668f740d9b280d /sbin/restore | |
parent | 22f66032168c9f62549e276d8db8bb66b119aa41 (diff) |
getc() returns an int
Diffstat (limited to 'sbin/restore')
-rw-r--r-- | sbin/restore/utilities.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/restore/utilities.c b/sbin/restore/utilities.c index a7840f19537..eb7100caedf 100644 --- a/sbin/restore/utilities.c +++ b/sbin/restore/utilities.c @@ -1,4 +1,4 @@ -/* $OpenBSD: utilities.c,v 1.8 2002/02/19 19:39:38 millert Exp $ */ +/* $OpenBSD: utilities.c,v 1.9 2002/02/23 21:18:11 deraadt Exp $ */ /* $NetBSD: utilities.c,v 1.11 1997/03/19 08:42:56 lukem Exp $ */ /* @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)utilities.c 8.4 (Berkeley) 10/18/94"; #else -static char rcsid[] = "$OpenBSD: utilities.c,v 1.8 2002/02/19 19:39:38 millert Exp $"; +static char rcsid[] = "$OpenBSD: utilities.c,v 1.9 2002/02/23 21:18:11 deraadt Exp $"; #endif #endif /* not lint */ @@ -386,7 +386,7 @@ int reply(question) char *question; { - char c; + int c; do { fprintf(stderr, "%s? [yn] ", question); |