X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Finterface.c;h=849de955ed1be50916a880c694f6eb6a5a21dbe1;hb=50ad45a6a6c68119823d56c1ccec74135ba744f9;hp=b8ed6e402bf564b2185b11a1c2dee1416fef36b6;hpb=7dcf9ab7675fe91d1bd74998f55031bc3b0480c0;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));