core: rename write_string functions to write_cstr

This commit is contained in:
2026-04-20 21:41:38 +01:00
parent 709d11331c
commit 5ab348fd30
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -238,7 +238,7 @@ static void to_stream(const struct fx_rope *rope, void *arg)
case FX_ROPE_F_CSTR:
case FX_ROPE_F_CSTR_BORROWED:
case FX_ROPE_F_CSTR_STATIC:
fx_stream_write_string(out, rope->r_v.v_cstr.s, NULL);
fx_stream_write_cstr(out, rope->r_v.v_cstr.s, NULL);
break;
case FX_ROPE_F_INT:
fx_stream_write_fmt(out, NULL, "%" PRIdPTR, rope->r_v.v_int);