diff options
Diffstat (limited to 'coreutils/tail.c')
-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 f1ba04e..2a16453 100644 --- a/coreutils/tail.c +++ b/coreutils/tail.c @@ -91,7 +91,7 @@ int tail_main(int argc, char **argv) if (argc >= 2 && (argv[1][0] == '+' || argv[1][0] == '-') && isdigit(argv[1][1]) ) { - argv[0] = "-n"; + argv[0] = (char*)"-n"; argv--; argc++; } |