diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-08 12:49:22 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-08 12:49:22 +0000 |
commit | 1385899416a4396385ad421ae1f532be7103738a (patch) | |
tree | fc4d14a910593d1235318bb36abe5e9f72d2039e /coreutils/usleep.c | |
parent | 5625415085e68ac5e150f54e685417c866620d76 (diff) | |
download | busybox-w32-1385899416a4396385ad421ae1f532be7103738a.tar.gz busybox-w32-1385899416a4396385ad421ae1f532be7103738a.tar.bz2 busybox-w32-1385899416a4396385ad421ae1f532be7103738a.zip |
attempt to regularize atoi mess.
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 90ddc5a57..de473a7b2 100644 --- a/coreutils/usleep.c +++ b/coreutils/usleep.c | |||
@@ -20,7 +20,7 @@ int usleep_main(int argc, char **argv) | |||
20 | bb_show_usage(); | 20 | bb_show_usage(); |
21 | } | 21 | } |
22 | 22 | ||
23 | if (usleep(bb_xgetularg10_bnd(argv[1], 0, UINT_MAX))) { | 23 | if (usleep(xatou(argv[1]))) { |
24 | bb_perror_nomsg_and_die(); | 24 | bb_perror_nomsg_and_die(); |
25 | } | 25 | } |
26 | 26 | ||