summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: dc0f3ae)
raw | patch | inline | side by side (parent: dc0f3ae)
author | Florian Forster <octo@collectd.org> | |
Thu, 23 Aug 2012 07:45:57 +0000 (09:45 +0200) | ||
committer | Florian Forster <octo@collectd.org> | |
Thu, 23 Aug 2012 07:46:41 +0000 (09:46 +0200) |
src/utils_format_json.c | patch | blob | history |
index ec198438abb8f064b8cedfadefaac4841fd6aba6..bbc3dfdb4efc9b21be341e2e1ff2845c67e5ed33 100644 (file)
--- a/src/utils_format_json.c
+++ b/src/utils_format_json.c
} /* }}} int values_to_json */
static int dstypes_to_json (char *buffer, size_t buffer_size, /* {{{ */
- const data_set_t *ds, const value_list_t *vl)
+ const data_set_t *ds)
{
size_t offset = 0;
int i;
} /* }}} int dstypes_to_json */
static int dsnames_to_json (char *buffer, size_t buffer_size, /* {{{ */
- const data_set_t *ds, const value_list_t *vl)
+ const data_set_t *ds)
{
size_t offset = 0;
int i;
return (status);
BUFFER_ADD ("\"values\":%s", temp);
- status = dstypes_to_json (temp, sizeof (temp), ds, vl);
+ status = dstypes_to_json (temp, sizeof (temp), ds);
if (status != 0)
return (status);
BUFFER_ADD (",\"dstypes\":%s", temp);
- status = dsnames_to_json (temp, sizeof (temp), ds, vl);
+ status = dsnames_to_json (temp, sizeof (temp), ds);
if (status != 0)
return (status);
BUFFER_ADD (",\"dsnames\":%s", temp);