No need to initialize static bools to false
[collectd.git] / src / df.c
index 5c08ca4..7e4c715 100644 (file)
--- a/src/df.c
+++ b/src/df.c
@@ -55,10 +55,10 @@ static ignorelist_t *il_device = NULL;
 static ignorelist_t *il_mountpoint = NULL;
 static ignorelist_t *il_fstype = NULL;
 
-static bool by_device = 0;
-static bool report_inodes = 0;
+static bool by_device;
+static bool report_inodes;
 static bool values_absolute = 1;
-static bool values_percentage = 0;
+static bool values_percentage;
 
 static int df_init(void) {
   if (il_device == NULL)