From a956e21fc412309620aa3b685854b035dc5d48e2 Mon Sep 17 00:00:00 2001 From: Max Wash Date: Fri, 24 Oct 2025 12:50:15 +0100 Subject: [PATCH] io: path: update to_string() to use new b_stream interface --- io/sys/darwin/path.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/io/sys/darwin/path.c b/io/sys/darwin/path.c index 2046c95..600bb1d 100644 --- a/io/sys/darwin/path.c +++ b/io/sys/darwin/path.c @@ -1,6 +1,5 @@ #include "posix.h" -#include #include #include #include @@ -376,7 +375,7 @@ void path_fini(b_object *obj, void *priv) b_string_unref(path->p_pathstr); } -void path_to_string(const b_object *obj, struct b_stream *out) +void path_to_string(const b_object *obj, b_stream *out) { struct b_path_p *path = b_object_get_private(obj, B_TYPE_PATH);