From eb3871f7ac7894a947ef806cc9bf241b187fd739 Mon Sep 17 00:00:00 2001 From: Max Wash Date: Fri, 24 Oct 2025 12:41:26 +0100 Subject: [PATCH] ds: dict: update to_string() to use new b_stream interface --- ds/dict.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ds/dict.c b/ds/dict.c index 04e1235..9a49165 100644 --- a/ds/dict.c +++ b/ds/dict.c @@ -407,7 +407,7 @@ static void dict_fini(b_object *obj, void *priv) } } -static void dict_to_string(const b_object *obj, struct b_stream *out) +static void dict_to_string(const b_object *obj, b_stream *out) { struct b_dict_p *dict = b_object_get_private(obj, B_TYPE_DICT);