(writeline): Use a SPACE, not a TAB between the
authorJim Meyering <jim@meyering.net>
Fri, 18 Jul 2003 07:47:05 +0000 (07:47 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 18 Jul 2003 07:47:05 +0000 (07:47 +0000)
count and the corresponding line, as required by POSIX.

src/uniq.c

index e5d74d68a4bae650a55c0df86119c448335bc5ee..86721c43a94fd54ec37b17b9f2dddf3f57311f95 100644 (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);
 }