summaryrefslogtreecommitdiff
path: root/src/sleep.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-08-31 08:52:10 +0000
committerJim Meyering <jim@meyering.net>2002-08-31 08:52:10 +0000
commit4006f4e672123e0189e58d4f76b58d06ae30eb94 (patch)
tree8a56a42aaa14b061c6181b43d9b3c6d78de83f5b /src/sleep.c
parent74887031996e79df07dae9711f08d80839b31e62 (diff)
downloadcoreutils-4006f4e672123e0189e58d4f76b58d06ae30eb94.tar.xz
Change `exit (0)' to `exit (EXIT_SUCCESS)',
`exit (1)' to `exit (EXIT_FAILURE)', and `usage (1)' to `usage (EXIT_FAILURE)'.
Diffstat (limited to 'src/sleep.c')
-rw-r--r--src/sleep.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sleep.c b/src/sleep.c
index 62b1f16f8..2c590c9c7 100644
--- a/src/sleep.c
+++ b/src/sleep.c
@@ -212,14 +212,14 @@ main (int argc, char **argv)
break;
default:
- usage (1);
+ usage (EXIT_FAILURE);
}
}
if (argc == 1)
{
error (0, 0, _("too few arguments"));
- usage (1);
+ usage (EXIT_FAILURE);
}
#ifdef FE_UPWARD
@@ -248,7 +248,7 @@ main (int argc, char **argv)
}
if (fail)
- usage (1);
+ usage (EXIT_FAILURE);
/* Separate whole seconds from nanoseconds.
Be careful to detect any overflow. */
@@ -298,5 +298,5 @@ main (int argc, char **argv)
clock_get_realtime (&ts_start)))
continue;
- exit (0);
+ exit (EXIT_SUCCESS);
}