diff options
Diffstat (limited to 'sutils/halt.c')
-rw-r--r-- | sutils/halt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sutils/halt.c b/sutils/halt.c index 01f06b4f..c108872e 100644 --- a/sutils/halt.c +++ b/sutils/halt.c @@ -1,5 +1,5 @@ /* Halt the system - Copyright (C) 1994, 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1994, 1996, 1997, 2002 Free Software Foundation, Inc. Written by Michael I. Bushnell. This file is part of the GNU Hurd. @@ -34,6 +34,6 @@ main (int argc, char *argv[]) struct argp argp = {0, 0, 0, "Halt the system"}; argp_parse (&argp, argc, argv, 0, 0, 0); reboot (RB_HALT); - perror ("reboot"); + error (1, errno, "reboot"); return 1; } |