X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fascent.c;h=b14be3c0d709528bf226b9980127b091c3c692b5;hb=04f27bdd38966e0b826b283d8790ce31fb467929;hp=11bb97f0c6bce3b3abe457090053173d91a01737;hpb=02f8dbc0985310574ea2837cd5e3c06cccda203d;p=collectd.git diff --git a/src/ascent.c b/src/ascent.c index 11bb97f0..b14be3c0 100644 --- a/src/ascent.c +++ b/src/ascent.c @@ -126,14 +126,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)