X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Flpar.c;h=df4424c852ad944a72ffc58e35567a16a9271285;hb=98e38add333bfcb893fcde408ecf3a0c43d99e31;hp=412a721ab3707f3d448f13692599e2fc705855f6;hpb=2079ee1517e34de372f58e7e2267ad5c71a8a41f;p=collectd.git diff --git a/src/lpar.c b/src/lpar.c index 412a721a..df4424c8 100644 --- a/src/lpar.c +++ b/src/lpar.c @@ -99,18 +99,13 @@ static int lpar_init(void) { } /* int lpar_init */ static void lpar_submit(const char *type_instance, double value) { - value_t values[1]; value_list_t vl = VALUE_LIST_INIT; - values[0].gauge = (gauge_t)value; - - vl.values = values; + vl.values = &(value_t){.gauge = value}; vl.values_len = 1; if (report_by_serial) { sstrncpy(vl.host, serial, sizeof(vl.host)); sstrncpy(vl.plugin_instance, hostname_g, sizeof(vl.plugin)); - } else { - sstrncpy(vl.host, hostname_g, sizeof(vl.host)); } sstrncpy(vl.plugin, "lpar", sizeof(vl.plugin)); sstrncpy(vl.type, "vcpu", sizeof(vl.type));