mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Correct cast to uintptr
This commit is contained in:
@@ -35,6 +35,6 @@ _exit :: proc "contextless" (code: int) -> ! {
|
|||||||
94 when ODIN_ARCH == .riscv64 else
|
94 when ODIN_ARCH == .riscv64 else
|
||||||
0
|
0
|
||||||
|
|
||||||
intrinsics.syscall(uintptr(SYS_exit_group), i32(code))
|
intrinsics.syscall(uintptr(SYS_exit_group), uintptr(i32(code)))
|
||||||
unreachable()
|
unreachable()
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user