diff options
| author | Jim Meyering <jim@meyering.net> | 1998-06-29 15:56:23 +0000 |
|---|---|---|
| committer | Jim Meyering <jim@meyering.net> | 1998-06-29 15:56:23 +0000 |
| commit | 391c960cba3d7207149f5148d99c068331add803 (patch) | |
| tree | 375400da83e67ccf5eaa3e5e3d57d0065223539f /src/wc.c | |
| parent | . (diff) | |
| download | coreutils-391c960cba3d7207149f5148d99c068331add803.tar.gz coreutils-391c960cba3d7207149f5148d99c068331add803.zip | |
Update call to human_readable -- now there's one fewer arg.
Diffstat (limited to 'src/wc.c')
| -rw-r--r-- | src/wc.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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 |
