projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f32046b
)
src/utils_format_json.c: Fix usage of yajl_gen_config().
author
Florian Forster
<octo@collectd.org>
Sun, 7 Aug 2016 17:12:21 +0000
(19:12 +0200)
committer
Florian Forster
<octo@collectd.org>
Sun, 7 Aug 2016 17:12:32 +0000
(19:12 +0200)
src/utils_format_json.c
patch
|
blob
|
history
diff --git
a/src/utils_format_json.c
b/src/utils_format_json.c
index
63f03da
..
5b5fcdf
100644
(file)
--- a/
src/utils_format_json.c
+++ b/
src/utils_format_json.c
@@
-676,8
+676,8
@@
int format_json_notification (char *buffer, size_t buffer_size, /* {{{ */
if (g == NULL)
return -1;
# if COLLECT_DEBUG
- yajl_gen_config (g, yajl_gen_beautify);
- yajl_gen_config (g, yajl_gen_validate_utf8);
+ yajl_gen_config (g, yajl_gen_beautify
, 1
);
+ yajl_gen_config (g, yajl_gen_validate_utf8
, 1
);
# endif
#else /* !HAVE_YAJL_V2 */