From c138da8d7f550ef1699eb50d786925d74c18a79a Mon Sep 17 00:00:00 2001 From: basicallygit <91993321+basicallygit@users.noreply.github.com> Date: Thu, 20 Nov 2025 21:33:53 +0000 Subject: Fix returning void value from void functions and print mimetypes warning to stderr --- src/types/str.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/types/str.c') diff --git a/src/types/str.c b/src/types/str.c index e1818a2..bbd5ad9 100644 --- a/src/types/str.c +++ b/src/types/str.c @@ -35,7 +35,7 @@ str* str_init(const char* init){ void str_free(str* s){ free(s->c); - return free(s); + free(s); } void str_push(str* s, const char* insert){ -- cgit v1.2.3