aboutsummaryrefslogtreecommitdiff
path: root/include/ucl.h
diff options
context:
space:
mode:
authorMuhammad Moinur Rahman <bofh@FreeBSD.org>2025-05-22 13:42:38 +0000
committerMuhammad Moinur Rahman <bofh@FreeBSD.org>2025-05-22 13:42:38 +0000
commit1e2f270469c61337ef7f5f92ab93f691e5d86492 (patch)
tree92f1d8dc1abac73131ddeaa9867d4ef3d36ab1da /include/ucl.h
parent76f58d4432898b68da2a65237ed6089d0ef90653 (diff)
Diffstat (limited to 'include/ucl.h')
-rw-r--r--include/ucl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ucl.h b/include/ucl.h
index 39da2593648d..b8625b9fce2f 100644
--- a/include/ucl.h
+++ b/include/ucl.h
@@ -1411,13 +1411,13 @@ struct ucl_emitter_operations {
const ucl_object_t *obj, bool first, bool print_key);
/** Start ucl object */
void (*ucl_emitter_start_object) (struct ucl_emitter_context *ctx,
- const ucl_object_t *obj, bool print_key);
+ const ucl_object_t *obj, bool first, bool print_key);
/** End ucl object */
void (*ucl_emitter_end_object) (struct ucl_emitter_context *ctx,
const ucl_object_t *obj);
/** Start ucl array */
void (*ucl_emitter_start_array) (struct ucl_emitter_context *ctx,
- const ucl_object_t *obj, bool print_key);
+ const ucl_object_t *obj, bool first, bool print_key);
void (*ucl_emitter_end_array) (struct ucl_emitter_context *ctx,
const ucl_object_t *obj);
};