diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-10-30 16:32:26 +0000 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-10-30 16:32:26 +0000 |
| commit | 91a98750776e2aab83221cb48ef9972665b8102a (patch) | |
| tree | 4b3a160e936e20f6275cac4ddd8afe7386387a32 | |
| parent | efb553afadf92bfb0f889d12eacd5bff935495c0 (diff) | |
Correct cast to `uintptr`
| -rw-r--r-- | base/runtime/os_specific_linux.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/runtime/os_specific_linux.odin b/base/runtime/os_specific_linux.odin index e24454bf3..dfe3c8841 100644 --- a/base/runtime/os_specific_linux.odin +++ b/base/runtime/os_specific_linux.odin @@ -35,6 +35,6 @@ _exit :: proc "contextless" (code: int) -> ! { 94 when ODIN_ARCH == .riscv64 else 0 - intrinsics.syscall(uintptr(SYS_exit_group), i32(code)) + intrinsics.syscall(uintptr(SYS_exit_group), uintptr(i32(code))) unreachable() } |