attempt to regularize atoi mess.

This commit is contained in:
Denis Vlasenko
2006-10-08 12:49:22 +00:00
parent 5625415085
commit 1385899416
98 changed files with 814 additions and 860 deletions

View File

@@ -20,7 +20,7 @@ int usleep_main(int argc, char **argv)
bb_show_usage();
}
if (usleep(bb_xgetularg10_bnd(argv[1], 0, UINT_MAX))) {
if (usleep(xatou(argv[1]))) {
bb_perror_nomsg_and_die();
}