From: Aaron Marcher Date: Mon, 7 May 2018 10:14:46 +0000 (+0200) Subject: Fix disk_perc by casting it to int X-Git-Url: https://git.atheridis.org/?a=commitdiff_plain;h=dcffaeaf570e6dde5745080e533b5404ebc0e610;p=suckless%2Fslstatus.git Fix disk_perc by casting it to int --- diff --git a/components/disk.c b/components/disk.c index a225421..1251edb 100644 --- a/components/disk.c +++ b/components/disk.c @@ -30,8 +30,8 @@ disk_perc(const char *mnt) return NULL; } - return bprintf("%d", 100 * - (1.0f - ((float)fs.f_bfree / (float)fs.f_blocks))); + return bprintf("%d", (int)(100 * + (1.0f - ((float)fs.f_bfree / (float)fs.f_blocks)))); } const char *