]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Update call to human_readable -- now there's one fewer arg.
authorJim Meyering <jim@meyering.net>
Mon, 29 Jun 1998 15:56:23 +0000 (15:56 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 29 Jun 1998 15:56:23 +0000 (15:56 +0000)
src/wc.c

index 71fd4fb182c3156870a126c489647ba3c73d33aa..500958bdbf79197f7c2935b62d34c2a080cc54a7 100644 (file)
--- 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