diff options
author | Jim Meyering <jim@meyering.net> | 2000-08-06 09:03:29 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-08-06 09:03:29 +0000 |
commit | 61b0870c410bf17cffc386eb4ab5b11a782c274b (patch) | |
tree | d1d6b641a825618ac3e7bc9c2d2e5bec7c762cfd | |
parent | ae9ce08522f0264c2da12a8b10321eb8c873a585 (diff) | |
download | coreutils-61b0870c410bf17cffc386eb4ab5b11a782c274b.tar.xz |
(pipe_lines): Declare local `cp' to be const.
-rw-r--r-- | src/tail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tail.c b/src/tail.c index 79be4f3cb..5eaa2f968 100644 --- a/src/tail.c +++ b/src/tail.c @@ -545,7 +545,7 @@ pipe_lines (const char *pretty_filename, int fd, long int n_lines) /* Find the correct beginning, then print the rest of the file. */ if (total_lines > n_lines) { - char *cp; + const char *cp; /* Skip `total_lines' - `n_lines' newlines. We made sure that `total_lines' - `n_lines' <= `tmp->nlines'. */ |