X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fascent.c;h=5f0d85e763d335774f96c1dac4e364ab3287ff6f;hb=fb0cc621d4357bbe4a9dc36c7f055f46257ce57c;hp=f5c3071a649db242dd12b3c1b85734ad9a9bf249;hpb=79963d13c1884d1d92667cc502ad20758b084a12;p=collectd.git diff --git a/src/ascent.c b/src/ascent.c index f5c3071a..5f0d85e7 100644 --- a/src/ascent.c +++ b/src/ascent.c @@ -110,14 +110,10 @@ static int config_keys_num = STATIC_ARRAY_SIZE(config_keys); static int ascent_submit_gauge(const char *plugin_instance, /* {{{ */ const char *type, const char *type_instance, gauge_t value) { - value_t values[1]; value_list_t vl = VALUE_LIST_INIT; - values[0].gauge = value; - - vl.values = values; + vl.values = &(value_t){.gauge = value}; vl.values_len = 1; - sstrncpy(vl.host, hostname_g, sizeof(vl.host)); sstrncpy(vl.plugin, "ascent", sizeof(vl.plugin)); if (plugin_instance != NULL) @@ -575,5 +571,3 @@ void module_register(void) { plugin_register_init("ascent", ascent_init); plugin_register_read("ascent", ascent_read); } /* void module_register */ - -/* vim: set sw=2 sts=2 ts=8 et fdm=marker : */