From: Jim Meyering Date: Wed, 31 Dec 1997 21:34:07 +0000 (+0000) Subject: (show_dev): Print inode counts human readably. X-Git-Tag: v4.5.1~8973 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3d35f67898b94fa588fd24d6e620bdcabe23437;p=thirdparty%2Fcoreutils.git (show_dev): Print inode counts human readably. --- diff --git a/src/df.c b/src/df.c index 29d9e14276..f53a0802ad 100644 --- a/src/df.c +++ b/src/df.c @@ -244,9 +244,9 @@ show_dev (const char *disk, const char *mount_point, const char *fstype) } printf (" %7s %7s %7s %5.0f%%", - human_readable (fsu.fsu_files, buf[0], 1, 1, 0), - human_readable (inodes_used, buf[1], 1, 1, 0), - human_readable (fsu.fsu_ffree, buf[2], 1, 1, 0), + human_readable (fsu.fsu_files, buf[0], 1, 1, human_readable_base), + human_readable (inodes_used, buf[1], 1, 1, human_readable_base), + human_readable (fsu.fsu_ffree, buf[2], 1, 1, human_readable_base), inodes_percent_used); } else