aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--coreutils/usleep.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/coreutils/usleep.c b/coreutils/usleep.c
index 67f94f798..2e4eb5721 100644
--- a/coreutils/usleep.c
+++ b/coreutils/usleep.c
@@ -29,9 +29,7 @@ int usleep_main(int argc UNUSED_PARAM, char **argv)
29 bb_show_usage(); 29 bb_show_usage();
30 } 30 }
31 31
32 if (usleep(xatou(argv[1]))) { 32 usleep(xatou(argv[1]));
33 bb_perror_nomsg_and_die();
34 }
35 33
36 return EXIT_SUCCESS; 34 return EXIT_SUCCESS;
37} 35}