mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-04 14:48:47 +00:00
Typo fix
This commit is contained in:
@@ -362,7 +362,7 @@ when ODIN_OS == .Darwin && ODIN_ARCH == .arm64 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fchmod :: proc(fd: Handle, mode: u16) -> Errno {
|
fchmod :: proc(fd: Handle, mode: u16) -> Errno {
|
||||||
return cast(Errno)_unix_fchmod(fildes, mode)
|
return cast(Errno)_unix_fchmod(fd, mode)
|
||||||
}
|
}
|
||||||
|
|
||||||
close :: proc(fd: Handle) -> bool {
|
close :: proc(fd: Handle) -> bool {
|
||||||
|
|||||||
Reference in New Issue
Block a user