diff options
author | Denis Vlasenko | 2009-03-27 02:36:02 +0000 |
---|---|---|
committer | Denis Vlasenko | 2009-03-27 02:36:02 +0000 |
commit | 3603cd2808b3025460f2ad920d4622ed17194a32 (patch) | |
tree | 5b96941534dcacce561b7fb739d7d81f182b1146 | |
parent | bfc0fae95238a5fd72728ea7547fdeb27f864060 (diff) | |
download | busybox-3603cd2808b3025460f2ad920d4622ed17194a32.zip busybox-3603cd2808b3025460f2ad920d4622ed17194a32.tar.gz |
tail: fix tail +N syntax not working. Closes bug 221.
-rw-r--r-- | coreutils/tail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/tail.c b/coreutils/tail.c index 2505fc3..5dae2d3 100644 --- a/coreutils/tail.c +++ b/coreutils/tail.c @@ -104,7 +104,7 @@ int tail_main(int argc, char **argv) if (argv[1] && (argv[1][0] == '+' || argv[1][0] == '-') && isdigit(argv[1][1]) ) { - count = eat_num(&argv[1][1]); + count = eat_num(argv[1]); argv++; argc--; } |