Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-04-27 14:42:31 +0400
committerEric Andersen <andersen@codepoet.org>2003-04-27 14:42:31 +0400
commita860bec167faa960231b7f3c1ca55a49cda5a9d2 (patch)
tree134a61e4bc83baa7dcd554e58cb1b4ad6199a5c0 /miscutils/strings.c
parent7a54360cd4130f5891e178b6d33eb5b15398c721 (diff)
A couple of patches from Tito <farmatito@tiscali.it>
Diffstat (limited to 'miscutils/strings.c')
-rw-r--r--miscutils/strings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/strings.c b/miscutils/strings.c
index 2413c3f2d..c0d4a3f74 100644
--- a/miscutils/strings.c
+++ b/miscutils/strings.c
@@ -54,7 +54,7 @@ int strings_main(int argc, char **argv)
opt+=2;
break;
case 'n':
- n = bb_xgetlarg(optarg, 10, 1, LONG_MAX);
+ n = bb_xgetlarg(optarg, 10, 1, INT_MAX);
break;
default:
bb_show_usage();