summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1998-06-29 15:56:23 +0000
committerJim Meyering <jim@meyering.net>1998-06-29 15:56:23 +0000
commit391c960cba3d7207149f5148d99c068331add803 (patch)
tree375400da83e67ccf5eaa3e5e3d57d0065223539f /src
parent62f208d49356dd96fa40bc7f175297de1c349659 (diff)
downloadcoreutils-391c960cba3d7207149f5148d99c068331add803.tar.xz
Update call to human_readable -- now there's one fewer arg.
Diffstat (limited to 'src')
-rw-r--r--src/wc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wc.c b/src/wc.c
index 71fd4fb18..500958bdb 100644
--- a/src/wc.c
+++ b/src/wc.c
@@ -111,26 +111,26 @@ write_counts (uintmax_t lines,
if (print_lines)
{
- printf ("%7s", human_readable (lines, buf, 1, 1, 0));
+ printf ("%7s", human_readable (lines, buf, 1, 1));
space = " ";
}
if (print_words)
{
- printf ("%s%7s", space, human_readable (words, buf, 1, 1, 0));
+ printf ("%s%7s", space, human_readable (words, buf, 1, 1));
space = " ";
}
if (print_chars)
{
- printf ("%s%7s", space, human_readable (chars, buf, 1, 1, 0));
+ printf ("%s%7s", space, human_readable (chars, buf, 1, 1));
space = " ";
}
if (print_linelength)
{
- printf ("%s%7s", space, human_readable (linelength, buf, 1, 1, 0));
+ printf ("%s%7s", space, human_readable (linelength, buf, 1, 1));
}
if (*file)
printf (" %s", file);
- PUTCHAR ('\n');
+ putchar ('\n');
}
static void