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. --- miscutils/strings.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'miscutils/strings.c') diff --git a/miscutils/strings.c b/miscutils/strings.c index 36bcf8b17..1ff41ad9c 100644 --- a/miscutils/strings.c +++ b/miscutils/strings.c @@ -34,7 +34,7 @@ int strings_main(int argc, char **argv) argc -= optind; argv += optind; - n = bb_xgetlarg(n_arg, 10, 1, INT_MAX); + n = xatoul_range(n_arg, 1, INT_MAX); string = xzalloc(n + 1); n--; @@ -45,7 +45,8 @@ int strings_main(int argc, char **argv) } do { - if ((file = bb_wfopen(*argv, "r"))) { + file = bb_wfopen(*argv, "r"); + if (file) { PIPE: count = 0; do { -- cgit v1.2.3