X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Fapcups.c;h=2fa247995dde93f64321233d247e591b119d78d7;hp=262fa42432db9a84663d3c5da99b7e08289eeeac;hb=61a4ed99b1a5b6d371bb745933d0efc5dff9505c;hpb=b34cd94ec5b8b46fb0610c020c49f20e6d3980a8 diff --git a/src/apcups.c b/src/apcups.c index 262fa424..2fa24799 100644 --- a/src/apcups.c +++ b/src/apcups.c @@ -73,8 +73,8 @@ typedef struct { static char *conf_node = NULL; static char *conf_service = NULL; /* Defaults to false for backwards compatibility. */ -static _Bool conf_report_seconds = 0; -static _Bool conf_persistent_conn = 1; +static bool conf_report_seconds = 0; +static bool conf_persistent_conn = 1; static int global_sockfd = -1; @@ -347,7 +347,7 @@ static int apc_query_server(char const *node, char const *service, } static int apcups_config(oconfig_item_t *ci) { - _Bool persistent_conn_set = 0; + bool persistent_conn_set = 0; for (int i = 0; i < ci->children_num; i++) { oconfig_item_t *child = ci->children + i;