From 1385899416a4396385ad421ae1f532be7103738a Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sun, 8 Oct 2006 12:49:22 +0000 Subject: attempt to regularize atoi mess. --- coreutils/nice.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coreutils/nice.c') diff --git a/coreutils/nice.c b/coreutils/nice.c index 4c54dddbb..a347001e3 100644 --- a/coreutils/nice.c +++ b/coreutils/nice.c @@ -52,7 +52,7 @@ int nice_main(int argc, char **argv) if (argc < 4) { /* Missing priority and/or utility! */ bb_show_usage(); } - adjustment = bb_xgetlarg(argv[1], 10, INT_MIN, INT_MAX); + adjustment = xatoi(argv[1]); argv += 2; } -- cgit v1.2.3