all repos — slstatus @ 4fc4983502243b916acac7d61c09529ee744d759

my build of slstatus (tools.suckless.org/slstatus/)

disk_perc: Simplify
Aaron Marcher me@drkhsh.at
Mon, 07 May 2018 11:44:15 +0200
commit

4fc4983502243b916acac7d61c09529ee744d759

parent

b3330d849def11137a6905675e123b7ba9cce438

1 files changed, 2 insertions(+), 4 deletions(-)

jump to
M components/disk.ccomponents/disk.c

@@ -23,7 +23,6 @@

const char * disk_perc(const char *mnt) { - int perc; struct statvfs fs; if (statvfs(mnt, &fs) < 0) {

@@ -31,9 +30,8 @@ fprintf(stderr, "statvfs '%s': %s\n", mnt, strerror(errno));

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 *