mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 23:58:50 +00:00
Fixed Typo
This commit is contained in:
@@ -472,7 +472,7 @@ rename :: proc(old: string, new: string) -> bool {
|
|||||||
|
|
||||||
remove :: proc(path: string) -> bool {
|
remove :: proc(path: string) -> bool {
|
||||||
path_cstr := strings.clone_to_cstring(path, context.temp_allocator)
|
path_cstr := strings.clone_to_cstring(path, context.temp_allocator)
|
||||||
return _unix_remove(path) != -1
|
return _unix_remove(path_cstr) != -1
|
||||||
}
|
}
|
||||||
|
|
||||||
@private
|
@private
|
||||||
|
|||||||
Reference in New Issue
Block a user