diff options
Diffstat (limited to 'coreutils/sleep.c')
-rw-r--r-- | coreutils/sleep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/sleep.c b/coreutils/sleep.c index 61b7ce404..d21af19b3 100644 --- a/coreutils/sleep.c +++ b/coreutils/sleep.c | |||
@@ -29,7 +29,7 @@ | |||
29 | extern int sleep_main(int argc, char **argv) | 29 | extern int sleep_main(int argc, char **argv) |
30 | { | 30 | { |
31 | if ((argc < 2) || (**(argv + 1) == '-')) { | 31 | if ((argc < 2) || (**(argv + 1) == '-')) { |
32 | usage(sleep_usage); | 32 | show_usage(); |
33 | } | 33 | } |
34 | 34 | ||
35 | if (sleep(atoi(*(++argv))) != 0) | 35 | if (sleep(atoi(*(++argv))) != 0) |