(writeline): Use a SPACE, not a TAB between the

count and the corresponding line, as required by POSIX.
This commit is contained in:
Jim Meyering
2003-07-18 07:47:05 +00:00
parent 470285bb48
commit 7f1636878f
+1 -1
View File
@@ -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);
}