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 /miscutils/strings.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 'miscutils/strings.c')
-rw-r--r-- | miscutils/strings.c | 5 |
1 files changed, 3 insertions, 2 deletions
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) | |||
34 | argc -= optind; | 34 | argc -= optind; |
35 | argv += optind; | 35 | argv += optind; |
36 | 36 | ||
37 | n = bb_xgetlarg(n_arg, 10, 1, INT_MAX); | 37 | n = xatoul_range(n_arg, 1, INT_MAX); |
38 | string = xzalloc(n + 1); | 38 | string = xzalloc(n + 1); |
39 | n--; | 39 | n--; |
40 | 40 | ||
@@ -45,7 +45,8 @@ int strings_main(int argc, char **argv) | |||
45 | } | 45 | } |
46 | 46 | ||
47 | do { | 47 | do { |
48 | if ((file = bb_wfopen(*argv, "r"))) { | 48 | file = bb_wfopen(*argv, "r"); |
49 | if (file) { | ||
49 | PIPE: | 50 | PIPE: |
50 | count = 0; | 51 | count = 0; |
51 | do { | 52 | do { |