updated tlibc

This commit is contained in:
2025-12-21 20:02:46 +05:00
parent 6260264f04
commit 4b15db7c1f
3 changed files with 3 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ Result(void) test_connection(){
printf("ROW(%i):", st->result_row);
for(i32 i = 0; i < column_count; i++){
try_void(tsqlite_statement_getResult_str(st, &cell_str));
printf(" [%i]='"FMT_str"'", st->result_col, str_expand(cell_str));
printf(" [%i]='"FMT_str"'", st->result_col, str_unwrap(cell_str));
}
printf("\n");
};