]> git.tuebingen.mpg.de Git - dss.git/blobdiff - df.c
Make the dss log facility C89 conform.
[dss.git] / df.c
diff --git a/df.c b/df.c
index 513bd19ca8750cdcfeef08747b34e6ac57cc1eba..6074f251c764c0e04f216d45f4aa51a72fc47d5c 100644 (file)
--- a/df.c
+++ b/df.c
@@ -42,7 +42,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));
 }