diff options
author | Aaron Marcher <me@drkhsh.at> | 2018-05-18 23:14:55 +0200 |
---|---|---|
committer | Aaron Marcher <me@drkhsh.at> | 2018-05-18 23:14:55 +0200 |
commit | b3e56066ed5349c6fd0afe1ac7cf5035e16a8a2f (patch) | |
tree | bc2918c432e3c06831e2d37d824780ec6f80a79c /components | |
parent | 35219d39caa5ab5e0b1c9e6d4a1cbb29a388842e (diff) |
Implement fmt_scaled for disk_* functions
Diffstat (limited to 'components')
-rw-r--r-- | components/disk.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/components/disk.c b/components/disk.c index f4031ea..00deea2 100644 --- a/components/disk.c +++ b/components/disk.c @@ -16,8 +16,7 @@ disk_free(const char *mnt) return NULL; } - return bprintf("%f", - (float)fs.f_frsize * (float)fs.f_bavail / 1024 / 1024 / 1024); + return fmt_scaled(fs.f_frsize * fs.f_bavail); } const char * @@ -44,8 +43,7 @@ disk_total(const char *mnt) return NULL; } - return bprintf("%f", - (float)fs.f_frsize * (float)fs.f_blocks / 1024 / 1024 / 1024); + return fmt_scaled(fs.f_frsize * fs.f_blocks); } const char * @@ -58,7 +56,5 @@ disk_used(const char *mnt) return NULL; } - return bprintf("%f", - (float)fs.f_frsize * ((float)fs.f_blocks - - (float)fs.f_bfree) / 1024 / 1024 / 1024); + return fmt_scaled(fs.f_frsize * (fs.f_blocks - fs.f_bfree)); } |