From 15a9147e15a5763dab75a5b48cf4f50c043e130f Mon Sep 17 00:00:00 2001 From: Max Wash Date: Sat, 2 May 2026 14:31:00 +0100 Subject: [PATCH] term: update string api usage --- term/paragraph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/term/paragraph.c b/term/paragraph.c index bab62b2..e4433e7 100644 --- a/term/paragraph.c +++ b/term/paragraph.c @@ -153,7 +153,7 @@ static fx_status print_paragraph_tty( indent(format, tty, left_margin); } - fx_tty_puts(tty, 0, fx_string_ptr(line)); + fx_tty_puts(tty, 0, fx_string_get_cstr(line)); fx_tty_putc(tty, 0, '\n'); need_indent = true; }