runtime: update fx api usage

This commit is contained in:
2026-06-15 17:41:08 +01:00
parent 0140f768cf
commit c68b1d2b26
4 changed files with 10 additions and 13 deletions
+2 -2
View File
@@ -220,7 +220,7 @@ static enum bshell_status eval_instruction(
fx_value_unset(&y);
const fx_property *prop
= fx_type_get_property(ty, fx_stringstream_ptr(strm));
= fx_type_get_property(ty, fx_stringstream_get_cstr(strm));
fx_stringstream_unref(strm);
if (!prop) {
@@ -267,7 +267,7 @@ static enum bshell_status eval_instruction(
fx_value_to_string(&x, strm, NULL);
fx_string_prepend_cstr(
result,
fx_stringstream_ptr(strm));
fx_stringstream_get_cstr(strm));
fx_value_unset(&x);
arg--;
}