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-03-13 23:54:26 +0300
committerEric Andersen <andersen@codepoet.org>2003-03-13 23:54:26 +0300
commitd2b811865053f5a88ee39c7d71b81dc7fa40dd3a (patch)
tree19d1c2fd0fa90ef07d03a4e7cda872079a991f8f /miscutils
parentc3b2dbec8c3249716f0027fcc423bde37517cbe6 (diff)
oops. args shuffled.
Diffstat (limited to 'miscutils')
-rw-r--r--miscutils/strings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/strings.c b/miscutils/strings.c
index ace4bed15..8d08b3f23 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, 1, LONG_MAX, 10);
+ n = bb_xgetlarg(optarg, 10, 1, LONG_MAX);
break;
default:
show_usage();