commit | a9819b290848e0a760f3805d5937fa050235d707 | [log] [tgz] |
---|---|---|
author | Matt Kraai <kraai@debian.org> | Fri Dec 22 01:48:07 2000 +0000 |
committer | Matt Kraai <kraai@debian.org> | Fri Dec 22 01:48:07 2000 +0000 |
tree | b8cb8d939032c0806d62161b01e5836cb808dc3f | |
parent | e9f07fb6e83b75a50760599a5d31f494841eddf7 [diff] [blame] |
Use busybox error handling functions wherever possible.
diff --git a/sleep.c b/sleep.c index ad92b10..10eca59 100644 --- a/sleep.c +++ b/sleep.c
@@ -30,9 +30,7 @@ usage(sleep_usage); } - if (sleep(atoi(*(++argv))) != 0) { - perror("sleep"); - return EXIT_FAILURE; - } + if (sleep(atoi(*(++argv))) != 0) + perror_msg_and_die("sleep"); return EXIT_SUCCESS; }