aboutsummaryrefslogtreecommitdiff
path: root/sleep.c
diff options
context:
space:
mode:
Diffstat (limited to 'sleep.c')
-rw-r--r--sleep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sleep.c b/sleep.c
index 709e3de34..ad92b106d 100644
--- a/sleep.c
+++ b/sleep.c
@@ -32,7 +32,7 @@ extern int sleep_main(int argc, char **argv)
32 32
33 if (sleep(atoi(*(++argv))) != 0) { 33 if (sleep(atoi(*(++argv))) != 0) {
34 perror("sleep"); 34 perror("sleep");
35 exit(FALSE); 35 return EXIT_FAILURE;
36 } 36 }
37 return(TRUE); 37 return EXIT_SUCCESS;
38} 38}