X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fmic.c;h=0c4ace6600b0821be1d35d20a33542febe77d492;hb=a396da422740caf336a6d594515e8d80de6f440a;hp=3f9521d8ab7bcf7efb672a5688db367c0c5cc235;hpb=85d892df2794d992c8e3554d8990d1306f114c11;p=collectd.git diff --git a/src/mic.c b/src/mic.c index 3f9521d8..0c4ace66 100644 --- a/src/mic.c +++ b/src/mic.c @@ -36,7 +36,7 @@ static MicDeviceOnSystem mics[MAX_MICS]; static U32 num_mics = 0; -static HANDLE mic_handle = NULL; +static HANDLE mic_handle; static int const therm_ids[] = { eMicThermalDie, eMicThermalDevMem, eMicThermalFin, eMicThermalFout, @@ -50,13 +50,13 @@ static const char *config_keys[] = { "ShowPower", "Power", "IgnoreSelectedPower"}; static int config_keys_num = STATIC_ARRAY_SIZE(config_keys); -static _Bool show_cpu = 1; -static _Bool show_cpu_cores = 1; -static _Bool show_memory = 1; -static _Bool show_temps = 1; -static ignorelist_t *temp_ignore = NULL; -static _Bool show_power = 1; -static ignorelist_t *power_ignore = NULL; +static bool show_cpu = true; +static bool show_cpu_cores = true; +static bool show_memory = true; +static bool show_temps = true; +static ignorelist_t *temp_ignore; +static bool show_power = true; +static ignorelist_t *power_ignore; static int mic_init(void) { U32 ret;