From: Aaron Marcher Date: Fri, 18 May 2018 21:14:55 +0000 (+0200) Subject: Implement fmt_scaled for disk_* functions X-Git-Url: https://git.atheridis.org/?a=commitdiff_plain;h=b3e56066ed5349c6fd0afe1ac7cf5035e16a8a2f;p=suckless%2Fslstatus.git Implement fmt_scaled for disk_* functions --- 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)); }