X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fteamspeak2.c;h=960d6464f694fe005b08628cfde2d7e68bccc132;hb=98e38add333bfcb893fcde408ecf3a0c43d99e31;hp=5b583b8971c54a5be18e9c05e2e52e479fadbca8;hpb=2079ee1517e34de372f58e7e2267ad5c71a8a41f;p=collectd.git diff --git a/src/teamspeak2.c b/src/teamspeak2.c index 5b583b89..960d6464 100644 --- a/src/teamspeak2.c +++ b/src/teamspeak2.c @@ -108,14 +108,10 @@ static void tss2_submit_gauge(const char *plugin_instance, const char *type, /* * Submits a gauge value to the collectd daemon */ - 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, "teamspeak2", sizeof(vl.plugin)); if (plugin_instance != NULL) @@ -134,15 +130,13 @@ static void tss2_submit_io(const char *plugin_instance, const char *type, /* * Submits the io rx/tx tuple to the collectd daemon */ - value_t values[2]; value_list_t vl = VALUE_LIST_INIT; - - values[0].derive = rx; - values[1].derive = tx; + value_t values[] = { + {.derive = rx}, {.derive = tx}, + }; vl.values = values; - vl.values_len = 2; - sstrncpy(vl.host, hostname_g, sizeof(vl.host)); + vl.values_len = STATIC_ARRAY_SIZE(values); sstrncpy(vl.plugin, "teamspeak2", sizeof(vl.plugin)); if (plugin_instance != NULL)