diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-12-10 18:09:01 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-10 18:09:01 +0000 |
| commit | 3fc0320449a82b769cb8e9eda0d767f6ffcd7c4f (patch) | |
| tree | 07c9d7f3b91a0e1bceca7f0eb2457b0b274bdecb | |
| parent | 8610acb48f2fd0c9d280c9a7973caf8db4143cf9 (diff) | |
| parent | 4a8d84c1077a61a7d4967593b46a3aa4b3e8ef28 (diff) | |
Merge pull request #5741 from FourteenBrush/patch-4
Make `linux.IO_Vec.base` a multipointer
| -rw-r--r-- | core/sys/linux/types.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sys/linux/types.odin b/core/sys/linux/types.odin index 6a2f7cbca..0910f11ec 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, } |