fixed small bugs

This commit is contained in:
2025-11-21 13:20:59 +05:00
parent 806f0359d0
commit 9dc7de1b41
5 changed files with 18 additions and 9 deletions

View File

@@ -84,7 +84,7 @@ Result(void) ClientCLI_run(ClientCLI* self) {
if(com_result.error){
Error_addCallPos(com_result.error, ErrorCallPos_here());
str e_str = Error_toStr(com_result.error);
printf(FMT_str"\n", e_str.size, e_str.data);
printf("\n"FMT_str"\n", e_str.size, e_str.data);
str_free(e_str);
Error_free(com_result.error);
}