Correct cast to uintptr

This commit is contained in:
gingerBill
2025-10-30 16:32:26 +00:00
parent efb553afad
commit 91a9875077
+1 -1
View File
@@ -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()
} }