diff options
Diffstat (limited to 'coreutils/usleep.c')
-rw-r--r-- | coreutils/usleep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/usleep.c b/coreutils/usleep.c index 34008a638..da6cca9ab 100644 --- a/coreutils/usleep.c +++ b/coreutils/usleep.c | |||
@@ -38,5 +38,5 @@ extern int usleep_main(int argc, char **argv) | |||
38 | } | 38 | } |
39 | 39 | ||
40 | usleep(atoi(*(++argv))); /* return void */ | 40 | usleep(atoi(*(++argv))); /* return void */ |
41 | exit(TRUE); | 41 | return(TRUE); |
42 | } | 42 | } |