projects
/
platform
/
upstream
/
coreutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
470285b
)
(writeline): Use a SPACE, not a TAB between the
author
Jim Meyering
<jim@meyering.net>
Fri, 18 Jul 2003 07:47:05 +0000
(07:47 +0000)
committer
Jim 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
patch
|
blob
|
history
diff --git
a/src/uniq.c
b/src/uniq.c
index e5d74d68a4bae650a55c0df86119c448335bc5ee..86721c43a94fd54ec37b17b9f2dddf3f57311f95 100644
(file)
--- 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);
}