From: Florian Forster Date: Tue, 8 May 2007 20:09:37 +0000 (+0200) Subject: memory plugin: Bugfix: values_len is one now, not four. X-Git-Tag: collectd-4.0.0~46^2~5 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=e22c993b20a6a76c21105ea0133a31fae5b9f380;p=collectd.git memory plugin: Bugfix: values_len is one now, not four. --- diff --git a/src/memory.c b/src/memory.c index 38347e31..8830ffe6 100644 --- a/src/memory.c +++ b/src/memory.c @@ -102,7 +102,7 @@ static void memory_submit (const char *type_instance, gauge_t value) values[0].gauge = value; vl.values = values; - vl.values_len = 4; + vl.values_len = 1; vl.time = time (NULL); strcpy (vl.host, hostname_g); strcpy (vl.plugin, "memory");