aboutsummaryrefslogtreecommitdiff
path: root/coreutils/tail.c
diff options
context:
space:
mode:
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 f1ba04ec6..2a1645309 100644
--- a/coreutils/tail.c
+++ b/coreutils/tail.c
@@ -91,7 +91,7 @@ int tail_main(int argc, char **argv)
91 if (argc >= 2 && (argv[1][0] == '+' || argv[1][0] == '-') 91 if (argc >= 2 && (argv[1][0] == '+' || argv[1][0] == '-')
92 && isdigit(argv[1][1]) 92 && isdigit(argv[1][1])
93 ) { 93 ) {
94 argv[0] = "-n"; 94 argv[0] = (char*)"-n";
95 argv--; 95 argv--;
96 argc++; 96 argc++;
97 } 97 }