Browse Source

resolve conflict

marcs-feh 1 year ago
parent
commit
d931bfcf83
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/sys/linux/sys.odin

+ 1 - 1
core/sys/linux/sys.odin

@@ -224,7 +224,7 @@ rt_sigprocmask :: proc "contextless" (mask_kind: Sig_Mask_Kind, new_set: ^Sig_Se
 	code value instead of a memory address depending on the request type.
 	Available since Linux 1.0.
 */
-ioctl :: proc "contextless" (fd: Fd, request: u64, arg: u64) -> (uintptr) {
+ioctl :: proc "contextless" (fd: Fd, request: i32, arg: uintptr) -> (uintptr) {
 	ret := syscall(SYS_ioctl, fd, request, arg)
 	return uintptr(ret)
 }