1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-26 02:30:35 +02:00

Update call to human_readable -- now there's one fewer arg.

This commit is contained in:
Jim Meyering
1998-06-29 15:56:23 +00:00
parent 62f208d493
commit 391c960cba
+5 -5
View File
@@ -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