X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Finterface.c;h=849de955ed1be50916a880c694f6eb6a5a21dbe1;hb=a78f607649122abb0684b191f6e8d1e44a117017;hp=b8ed6e402bf564b2185b11a1c2dee1416fef36b6;hpb=b847e8ff2fd928813397466a941947c8fce66d66;p=collectd.git diff --git a/src/interface.c b/src/interface.c index b8ed6e40..849de955 100644 --- a/src/interface.c +++ b/src/interface.c @@ -168,17 +168,17 @@ static void if_submit (const char *dev, const char *type, derive_t rx, derive_t tx) { - value_t values[2]; value_list_t vl = VALUE_LIST_INIT; + value_t values[] = { + { .derive = rx }, + { .derive = tx }, + }; if (ignorelist_match (ignorelist, dev) != 0) return; - values[0].derive = rx; - values[1].derive = tx; - vl.values = values; - vl.values_len = 2; + vl.values_len = STATIC_ARRAY_SIZE (values); sstrncpy (vl.host, hostname_g, sizeof (vl.host)); sstrncpy (vl.plugin, "interface", sizeof (vl.plugin)); sstrncpy (vl.plugin_instance, dev, sizeof (vl.plugin_instance));