X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fsigrok.c;h=5b850040f30b4f324e29480172b402e7d55a3ea6;hb=1aa4295ba6875ceb02a7383237bc2485ffab9c1e;hp=400645538d7d842f5d47f422f1347a2be5d7112d;hpb=958f7776a2daaa1a8664aded0a2c1d717c2f5909;p=collectd.git diff --git a/src/sigrok.c b/src/sigrok.c index 40064553..5b850040 100644 --- a/src/sigrok.c +++ b/src/sigrok.c @@ -161,7 +161,6 @@ static void sigrok_feed_callback(const struct sr_dev_inst *sdi, { const struct sr_datafeed_analog *analog; struct config_device *cfdev; - value_t value; value_list_t vl = VALUE_LIST_INIT; /* Find this device's configuration. */ @@ -199,8 +198,7 @@ static void sigrok_feed_callback(const struct sr_dev_inst *sdi, /* Ignore all but the first sample on the first probe. */ analog = packet->payload; - value.gauge = analog->data[0]; - vl.values = &value; + vl.values = &(value_t) { .gauge = analog->data[0] }; vl.values_len = 1; sstrncpy(vl.host, hostname_g, sizeof(vl.host)); sstrncpy(vl.plugin, "sigrok", sizeof(vl.plugin));