summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-07-18 07:47:05 +0000
committerJim Meyering <jim@meyering.net>2003-07-18 07:47:05 +0000
commit7f1636878fc0aaf799d40abb1913da3887de2a41 (patch)
treefcddbe3322c1ecc65e7f767a51647b07bed54c01 /src
parent470285bb487585bb3d55f8628af5ab7bed9b5266 (diff)
downloadcoreutils-7f1636878fc0aaf799d40abb1913da3887de2a41.tar.xz
(writeline): Use a SPACE, not a TAB between the
count and the corresponding line, as required by POSIX.
Diffstat (limited to 'src')
-rw-r--r--src/uniq.c2
1 files changed, 1 insertions, 1 deletions
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);
}