diff options
author | Aaron Marcher <me@drkhsh.at> | 2018-05-07 11:44:15 +0200 |
---|---|---|
committer | Aaron Marcher <me@drkhsh.at> | 2018-05-07 11:44:15 +0200 |
commit | 4fc4983502243b916acac7d61c09529ee744d759 (patch) | |
tree | d77c91e4f83d545235a190c36513fd7e37c04733 /components/disk.c | |
parent | b3330d849def11137a6905675e123b7ba9cce438 (diff) |
disk_perc: Simplify
Diffstat (limited to 'components/disk.c')
-rw-r--r-- | components/disk.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/components/disk.c b/components/disk.c index 2ce260b..a225421 100644 --- a/components/disk.c +++ b/components/disk.c @@ -23,7 +23,6 @@ disk_free(const char *mnt) const char * disk_perc(const char *mnt) { - int perc; struct statvfs fs; if (statvfs(mnt, &fs) < 0) { @@ -31,9 +30,8 @@ disk_perc(const char *mnt) return NULL; } - perc = 100 * (1.0f - ((float)fs.f_bfree / (float)fs.f_blocks)); - - return bprintf("%d", perc); + return bprintf("%d", 100 * + (1.0f - ((float)fs.f_bfree / (float)fs.f_blocks))); } const char * |