From 46c4540dd2f6181e77b0800a4e007d78d0162487 Mon Sep 17 00:00:00 2001 From: Laslo Hunhold Date: Sat, 19 May 2018 22:52:17 +0200 Subject: Implement fmt_human_2() and fmt_human_10() These functions take the raw number and a unit and automatically print it out "scaled down" to a proper SI-prefix, for powers of 2 and 10 respectively. Apply them to the 2-power cases and keep the 10-power for a later commit. --- components/disk.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'components/disk.c') diff --git a/components/disk.c b/components/disk.c index db18d12..998ad47 100644 --- a/components/disk.c +++ b/components/disk.c @@ -16,7 +16,7 @@ disk_free(const char *mnt) return NULL; } - return fmt_scaled(fs.f_frsize * fs.f_bavail); + return fmt_human_2(fs.f_frsize * fs.f_bavail, "B"); } const char * @@ -43,7 +43,7 @@ disk_total(const char *mnt) return NULL; } - return fmt_scaled(fs.f_frsize * fs.f_blocks); + return fmt_human_2(fs.f_frsize * fs.f_blocks, "B"); } const char * @@ -56,5 +56,5 @@ disk_used(const char *mnt) return NULL; } - return fmt_scaled(fs.f_frsize * (fs.f_blocks - fs.f_bfree)); + return fmt_human_2(fs.f_frsize * (fs.f_blocks - fs.f_bfree), "B"); } -- cgit v1.2.3