Set static bools to true instead of 1
[collectd.git] / src / fhcount.c
index 1e84efa..0550665 100644 (file)
@@ -25,8 +25,8 @@
 static const char *config_keys[] = {"ValuesAbsolute", "ValuesPercentage"};
 static int config_keys_num = STATIC_ARRAY_SIZE(config_keys);
 
-static bool values_absolute = 1;
-static bool values_percentage = 0;
+static bool values_absolute = true;
+static bool values_percentage;
 
 static int fhcount_config(const char *key, const char *value) {
   int ret = -1;