mirror of
git://git.sv.gnu.org/coreutils
synced 2026-06-03 06:20:53 -04:00
(writeline): Use a SPACE, not a TAB between the
count and the corresponding line, as required by POSIX.
This commit is contained in:
+1
-1
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user