diff options
author | planet36 <planet36@users.noreply.github.com> | 2021-03-05 14:28:15 -0500 |
---|---|---|
committer | drkhsh <me@drkhsh.at> | 2022-12-19 02:44:21 +0100 |
commit | 89f8476110c7bdfb70528da79be328ba0f6490be (patch) | |
tree | 02d0dd302538537f980e77ec8e313a7fb282d18e /components | |
parent | 0e2ff8dc1009dccab4d2e17ed53ba65c4e99450e (diff) | |
download | slstatus-89f8476110c7bdfb70528da79be328ba0f6490be.tar.gz |
disk: Cast fsblkcnt_t to double instead of float
Signed-off-by: drkhsh <me@drkhsh.at>
Diffstat (limited to 'components')
-rw-r--r-- | components/disk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/disk.c b/components/disk.c index 0d1c13e..e19a693 100644 --- a/components/disk.c +++ b/components/disk.c @@ -29,7 +29,7 @@ disk_perc(const char *path) } return bprintf("%d", (int)(100 * - (1.0f - ((float)fs.f_bavail / (float)fs.f_blocks)))); + (1 - ((double)fs.f_bavail / (double)fs.f_blocks)))); } const char * |