From 71c6daf9c73d073833eda791240f5fae22b645c6 Mon Sep 17 00:00:00 2001 From: Soikk Date: Thu, 6 Nov 2025 18:22:48 +0100 Subject: Fixed typos --- str/str.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'str/str.c') diff --git a/str/str.c b/str/str.c index 7767e99..052ec48 100755 --- a/str/str.c +++ b/str/str.c @@ -359,7 +359,7 @@ str file_to_nstr(char *filename, u32 len){ void str_to_file(str s, char *filename){ FILE *fp = fopen(filename, "r"); str_to_fp(s, fp); - fclose(fp) + fclose(fp); } str map_file(char *filename){ -- cgit v1.2.3