diff options
author | Jim Meyering <jim@meyering.net> | 2003-07-18 07:47:05 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-07-18 07:47:05 +0000 |
commit | 7f1636878fc0aaf799d40abb1913da3887de2a41 (patch) | |
tree | fcddbe3322c1ecc65e7f767a51647b07bed54c01 | |
parent | 470285bb487585bb3d55f8628af5ab7bed9b5266 (diff) | |
download | coreutils-7f1636878fc0aaf799d40abb1913da3887de2a41.tar.xz |
(writeline): Use a SPACE, not a TAB between the
count and the corresponding line, as required by POSIX.
-rw-r--r-- | src/uniq.c | 2 |
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); } |