X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fsensors.c;h=47db4e334581b912644a53d480fac0795a323cdb;hb=a396da422740caf336a6d594515e8d80de6f440a;hp=572d41f1f34b6d4580a7a6bdd5dda56d6397c2e2;hpb=8e5e2e927f9cf051ef210473b1b48ff62d81f585;p=collectd.git diff --git a/src/sensors.c b/src/sensors.c index 572d41f1..47db4e33 100644 --- a/src/sensors.c +++ b/src/sensors.c @@ -157,8 +157,8 @@ typedef struct featurelist { struct featurelist *next; } featurelist_t; -static char *conffile = NULL; -static _Bool use_labels = 0; +static char *conffile; +static bool use_labels; /* #endif (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x500) */ #else /* if SENSORS_API_VERSION >= 0x500 */ @@ -166,7 +166,7 @@ static _Bool use_labels = 0; "as bug." #endif -static featurelist_t *first_feature = NULL; +static featurelist_t *first_feature; static ignorelist_t *sensor_list; #if SENSORS_API_VERSION < 0x400 @@ -225,7 +225,7 @@ static int sensors_config(const char *key, const char *value) { } #if (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x500) else if (strcasecmp(key, "UseLabels") == 0) { - use_labels = IS_TRUE(value) ? 1 : 0; + use_labels = IS_TRUE(value); } #endif else {