No need to initialize static bools to false
[collectd.git] / src / lpar.c
index 367ebcd..77e6d08 100644 (file)
 static const char *config_keys[] = {"CpuPoolStats", "ReportBySerial"};
 static int config_keys_num = STATIC_ARRAY_SIZE(config_keys);
 
-static bool pool_stats = 0;
-static bool report_by_serial = 0;
+static bool pool_stats;
+static bool report_by_serial;
 #if PERFSTAT_SUPPORTS_DONATION
-static bool donate_flag = 0;
+static bool donate_flag;
 #endif
 static char serial[SYS_NMLN];