summaryrefslogtreecommitdiff
path: root/str/str.c
diff options
context:
space:
mode:
authorSoikk2025-11-06 18:22:48 +0100
committerSoikk2025-11-06 18:22:48 +0100
commit71c6daf9c73d073833eda791240f5fae22b645c6 (patch)
tree3bbfa4ed2f53ba7ad840bcaa98d4b7477b2367c7 /str/str.c
parent659e34f07c05e00baf10417503111048cbc634e3 (diff)
downloadsoikk-libs-71c6daf9c73d073833eda791240f5fae22b645c6.tar.xz
soikk-libs-71c6daf9c73d073833eda791240f5fae22b645c6.tar.zst
Fixed typos
Diffstat (limited to 'str/str.c')
-rwxr-xr-xstr/str.c2
1 files changed, 1 insertions, 1 deletions
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){