From: Jim Meyering Date: Sun, 22 Aug 1999 08:48:45 +0000 (+0000) Subject: (writeline): Constify a char*. X-Git-Tag: FILEUTILS-4_0j-trial~320 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=475a58337a4ab6511fdd78a07ba14a06e883e175;p=thirdparty%2Fcoreutils.git (writeline): Constify a char*. --- diff --git a/src/comm.c b/src/comm.c index 7434cc87a8..2e069d6597 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) {