summaryrefslogtreecommitdiff
path: root/df.c
diff options
context:
space:
mode:
Diffstat (limited to 'df.c')
-rw-r--r--df.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/df.c b/df.c
index 7fb319e..5d7c880 100644
--- a/df.c
+++ b/df.c
@@ -38,7 +38,7 @@ int get_disk_space(const char *path, struct disk_space *result)
void log_disk_space(struct disk_space *ds)
{
- DSS_INFO_LOG(("free: %uM/%uM (%u%%), %u%% inodes unused\n",
+ DSS_INFO_LOG("free: %uM/%uM (%u%%), %u%% inodes unused\n",
ds->free_mb, ds->total_mb, ds->percent_free,
- ds->percent_free_inodes));
+ ds->percent_free_inodes);
}