X-Git-Url: https://git.xinqibao.xyz/slstatus.git/blobdiff_plain/80fc20d1d69b14f36ad9bb64d8af38481cbf1ff5..c12b9cc50b5f476cd7b1de1dbd49e6282b1a042f:/components/disk.c diff --git a/components/disk.c b/components/disk.c index f4031ea..998ad47 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_human_2(fs.f_frsize * fs.f_bavail, "B"); } const char * @@ -30,7 +29,7 @@ disk_perc(const char *mnt) return NULL; } - return bprintf("%d", (int)(100 * + return bprintf("%d%%", (int)(100 * (1.0f - ((float)fs.f_bavail / (float)fs.f_blocks)))); } @@ -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_human_2(fs.f_frsize * fs.f_blocks, "B"); } 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_human_2(fs.f_frsize * (fs.f_blocks - fs.f_bfree), "B"); }