diff options
author | Jim Meyering <jim@meyering.net> | 1999-08-22 08:48:45 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-08-22 08:48:45 +0000 |
commit | 475a58337a4ab6511fdd78a07ba14a06e883e175 (patch) | |
tree | bccb05f728fc2d42b54d8e99ef584faf046d5d63 /src | |
parent | 1195909f5d6e857365fe63487d3dc29680cf2d44 (diff) | |
download | coreutils-475a58337a4ab6511fdd78a07ba14a06e883e175.tar.xz |
(writeline): Constify a char*.
Diffstat (limited to 'src')
-rw-r--r-- | src/comm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comm.c b/src/comm.c index 7434cc87a..2e069d659 100644 --- a/src/comm.c +++ b/src/comm.c @@ -95,7 +95,7 @@ Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n\ 2 for a line only in file 2, 3 for a line in both. */ static void -writeline (struct linebuffer *line, FILE *stream, int class) +writeline (const struct linebuffer *line, FILE *stream, int class) { switch (class) { |