aboutsummaryrefslogtreecommitdiff
path: root/coreutils/tail.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2009-03-27 02:36:02 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2009-03-27 02:36:02 +0000
commit3603cd2808b3025460f2ad920d4622ed17194a32 (patch)
tree5b96941534dcacce561b7fb739d7d81f182b1146 /coreutils/tail.c
parentbfc0fae95238a5fd72728ea7547fdeb27f864060 (diff)
downloadbusybox-3603cd2808b3025460f2ad920d4622ed17194a32.tar.gz
tail: fix tail +N syntax not working. Closes bug 221.
Diffstat (limited to 'coreutils/tail.c')
-rw-r--r--coreutils/tail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/tail.c b/coreutils/tail.c
index 2505fc3a6..5dae2d35b 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--;
}