Fixed Typo

This commit is contained in:
Platin21
2022-02-05 20:54:27 +01:00
parent de7e612186
commit 3edf638cc6

View File

@@ -472,7 +472,7 @@ rename :: proc(old: string, new: string) -> bool {
remove :: proc(path: string) -> bool {
path_cstr := strings.clone_to_cstring(path, context.temp_allocator)
return _unix_remove(path) != -1
return _unix_remove(path_cstr) != -1
}
@private