X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fascent.c;h=16568e6ca27a3d69ce5860458499ce9182862277;hb=1aa4295ba6875ceb02a7383237bc2485ffab9c1e;hp=20fef656c1e9acbd989aa29699512c32f023ab52;hpb=2761915bed8c6caea41018be3e675aa712cc0b0a;p=collectd.git diff --git a/src/ascent.c b/src/ascent.c index 20fef656..16568e6c 100644 --- a/src/ascent.c +++ b/src/ascent.c @@ -28,7 +28,6 @@ #include "common.h" #include "plugin.h" -#include "configfile.h" #include #include @@ -127,12 +126,9 @@ 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));