diff options
Diffstat (limited to 'coreutils/sleep.c')
-rw-r--r-- | coreutils/sleep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/sleep.c b/coreutils/sleep.c index 13f07c02f..c7ab32d4b 100644 --- a/coreutils/sleep.c +++ b/coreutils/sleep.c | |||
@@ -39,6 +39,6 @@ extern int sleep_main(int argc, char **argv) | |||
39 | if (sleep(atoi(*(++argv))) != 0) { | 39 | if (sleep(atoi(*(++argv))) != 0) { |
40 | perror("sleep"); | 40 | perror("sleep"); |
41 | exit(FALSE); | 41 | exit(FALSE); |
42 | } else | 42 | } |
43 | exit(TRUE); | 43 | return(TRUE); |
44 | } | 44 | } |