Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sleep.c')
-rw-r--r--sleep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sleep.c b/sleep.c
index 61b7ce404..d21af19b3 100644
--- a/sleep.c
+++ b/sleep.c
@@ -29,7 +29,7 @@
extern int sleep_main(int argc, char **argv)
{
if ((argc < 2) || (**(argv + 1) == '-')) {
- usage(sleep_usage);
+ show_usage();
}
if (sleep(atoi(*(++argv))) != 0)