From 7f1636878fc0aaf799d40abb1913da3887de2a41 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 18 Jul 2003 07:47:05 +0000 Subject: [PATCH] (writeline): Use a SPACE, not a TAB between the count and the corresponding line, as required by POSIX. --- src/uniq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uniq.c b/src/uniq.c index e5d74d68a..86721c43a 100644 --- a/src/uniq.c +++ b/src/uniq.c @@ -250,7 +250,7 @@ writeline (struct linebuffer const *line, FILE *stream, return; if (countmode == count_occurrences) - fprintf (stream, "%7d\t", linecount + 1); + fprintf (stream, "%7d ", linecount + 1); fwrite (line->buffer, sizeof (char), line->length, stream); } -- 2.34.1