From: Jim Meyering Date: Mon, 29 Jun 1998 15:56:23 +0000 (+0000) Subject: Update call to human_readable -- now there's one fewer arg. X-Git-Tag: FILEUTILS-3_16q~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=391c960cba3d7207149f5148d99c068331add803;p=thirdparty%2Fcoreutils.git Update call to human_readable -- now there's one fewer arg. --- diff --git a/src/wc.c b/src/wc.c index 71fd4fb182..500958bdbf 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