From 4a8d84c1077a61a7d4967593b46a3aa4b3e8ef28 Mon Sep 17 00:00:00 2001 From: FourteenBrush <74827262+FourteenBrush@users.noreply.github.com> Date: Thu, 2 Oct 2025 00:04:24 +0200 Subject: [PATCH] Make `linux.IO_Vec.base` a multipointer --- core/sys/linux/types.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/sys/linux/types.odin b/core/sys/linux/types.odin index c2948c36e..3883c6de2 100644 --- a/core/sys/linux/types.odin +++ b/core/sys/linux/types.odin @@ -932,7 +932,7 @@ RUsage :: struct { Struct used for IO operations */ IO_Vec :: struct { - base: rawptr, + base: [^]byte, len: uint, }