X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fxmms.c;h=b06434d4deaeddd8874676c675c2153e23556e1b;hb=c88c2de1c9cd6795b30c34990a565d18b69221e7;hp=1728cf1a38379d6f3a861942c7e67633d39b51eb;hpb=2079ee1517e34de372f58e7e2267ad5c71a8a41f;p=collectd.git diff --git a/src/xmms.c b/src/xmms.c index 1728cf1a..b06434d4 100644 --- a/src/xmms.c +++ b/src/xmms.c @@ -34,14 +34,10 @@ static gint xmms_session; static void cxmms_submit(const char *type, 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, "xmms", sizeof(vl.plugin)); sstrncpy(vl.type, type, sizeof(vl.type)); @@ -70,7 +66,3 @@ static int cxmms_read(void) { void module_register(void) { plugin_register_read("xmms", cxmms_read); } /* void module_register */ - -/* - * vim: shiftwidth=2:softtabstop=2:textwidth=78 - */