From 391c960cba3d7207149f5148d99c068331add803 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 29 Jun 1998 15:56:23 +0000 Subject: [PATCH] Update call to human_readable -- now there's one fewer arg. --- src/wc.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 -- 2.47.3