Better function call

This commit is contained in:
Bruce Hill 2025-03-19 16:12:42 -04:00
parent f61e6402bd
commit e7dc0ec85c

View File

@ -636,7 +636,7 @@ static Text_t _next_line(FILE **f)
if (u8_check((uint8_t*)line, (size_t)len) != NULL)
fail("Invalid UTF8!");
Text_t line_text = Text$format("%.*s", len, line);
Text_t line_text = Text$from_strn(line, (size_t)len);
free(line);
return line_text;
}