diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-03-13 20:54:26 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-03-13 20:54:26 +0000 |
commit | d2b811865053f5a88ee39c7d71b81dc7fa40dd3a (patch) | |
tree | 19d1c2fd0fa90ef07d03a4e7cda872079a991f8f | |
parent | c3b2dbec8c3249716f0027fcc423bde37517cbe6 (diff) | |
download | busybox-d2b811865053f5a88ee39c7d71b81dc7fa40dd3a.tar.gz |
oops. args shuffled.
-rw-r--r-- | miscutils/strings.c | 2 |
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(); |