From 586d4e3bc4a4cea0b997f3fd193ad094c3055e39 Mon Sep 17 00:00:00 2001 From: Max Wash Date: Fri, 24 Oct 2025 12:34:20 +0100 Subject: [PATCH] ds: array: update to_string() to use new b_stream interface --- ds/array.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ds/array.c b/ds/array.c index 0c6d56e..e8be7ad 100644 --- a/ds/array.c +++ b/ds/array.c @@ -307,7 +307,7 @@ static void array_fini(b_object *obj, void *priv) } } -static void array_to_string(const b_object *obj, struct b_stream *out) +static void array_to_string(const b_object *obj, b_stream *out) { struct b_array_p *array = b_object_get_private(obj, B_TYPE_ARRAY);