From: Florian Forster Date: Thu, 23 Aug 2012 07:45:57 +0000 (+0200) Subject: src/utils_format_json.c: Remove unused arguments. X-Git-Tag: collectd-5.2.0~77 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=60132b6986409b6b32dde133c99975e50b1d624c src/utils_format_json.c: Remove unused arguments. --- diff --git a/src/utils_format_json.c b/src/utils_format_json.c index ec198438..bbc3dfdb 100644 --- a/src/utils_format_json.c +++ b/src/utils_format_json.c @@ -152,7 +152,7 @@ static int values_to_json (char *buffer, size_t buffer_size, /* {{{ */ } /* }}} 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; @@ -189,7 +189,7 @@ static int dstypes_to_json (char *buffer, size_t buffer_size, /* {{{ */ } /* }}} 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; @@ -334,12 +334,12 @@ static int value_list_to_json (char *buffer, size_t buffer_size, /* {{{ */ 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);