diff options
author | David Hill <dhill@cvs.openbsd.org> | 2006-06-01 17:22:15 +0000 |
---|---|---|
committer | David Hill <dhill@cvs.openbsd.org> | 2006-06-01 17:22:15 +0000 |
commit | e6ef09ea9153f2d13adca6b4dd41b698a0882b78 (patch) | |
tree | 1d0e6676691ff4b473558ef05833bed17bbf8367 | |
parent | 20a0adaeca0f855aeec2f211238d2942d6b8b172 (diff) |
delint
ok moritz
-rw-r--r-- | sbin/reboot/reboot.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/reboot/reboot.c b/sbin/reboot/reboot.c index d46fc33c810..26e7d937a69 100644 --- a/sbin/reboot/reboot.c +++ b/sbin/reboot/reboot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: reboot.c,v 1.27 2006/04/06 21:36:17 henning Exp $ */ +/* $OpenBSD: reboot.c,v 1.28 2006/06/01 17:22:14 dhill Exp $ */ /* $NetBSD: reboot.c,v 1.8 1995/10/05 05:36:22 mycroft Exp $ */ /* @@ -40,7 +40,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)reboot.c 8.1 (Berkeley) 6/5/93"; #else -static char rcsid[] = "$OpenBSD: reboot.c,v 1.27 2006/04/06 21:36:17 henning Exp $"; +static char rcsid[] = "$OpenBSD: reboot.c,v 1.28 2006/06/01 17:22:14 dhill Exp $"; #endif #endif /* not lint */ @@ -72,7 +72,7 @@ int dohalt; int main(int argc, char *argv[]) { - int i; + unsigned int i; struct passwd *pw; int ch, howto, lflag, nflag, pflag, qflag; char *p, *user; |