summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Marcher <info@nulltime.net>2016-03-11 13:11:15 +0100
committerAaron Marcher (drkhsh) <info@nulltime.net>2016-03-11 13:11:15 +0100
commit6624985cf4537440cb6403e319d16ce83bee43f2 (patch)
tree92f71ddfb64ca6d95d677fd0ce1c66eafb8fd8d9
parentfaae8292fb5b752c885e1e6970592dacb020c754 (diff)
fixed disk percent
-rw-r--r--slstatus.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/slstatus.c b/slstatus.c
index 8ec68a4..75413a1 100644
--- a/slstatus.c
+++ b/slstatus.c
@@ -210,14 +210,20 @@ get_datetime()
char *
get_diskusage()
{
+ int perc = 0;
struct statvfs fs;
- float perc = 0;
+
+ /* try to open mountpoint */
if (statvfs(mountpath, &fs) < 0) {
fprintf(stderr, "Could not get filesystem info.\n");
return smprintf("n/a");
}
- perc = 1.0f - ((float)fs.f_bavail/(float)fs.f_blocks);
- return smprintf("%2f%%", perc);
+
+ /* calculate percent */
+ perc = 100 * (1.0f - ((float)fs.f_bavail / (float)fs.f_blocks));
+
+ /* return perc */
+ return smprintf("%d%%", perc);
}
/* ram percentage */