diff options
Diffstat (limited to 'plugins/sysinfo/match.c')
-rw-r--r-- | plugins/sysinfo/match.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/sysinfo/match.c b/plugins/sysinfo/match.c index 3ad44716..3184ce22 100644 --- a/plugins/sysinfo/match.c +++ b/plugins/sysinfo/match.c @@ -54,7 +54,7 @@ char *pretty_freespace(const char *desc, unsigned long long *free_k, unsigned lo free_space = free_space / 1024; total_space = total_space / 1024; } - if (sysinfo_get_percentages () != 0) + if (sysinfo_get_percent () != 0) snprintf(result, bsize, "%s: %.1f%s, %.1f%% free", desc, total_space, bytesize, percentage(free_k, total_k)); |