diff options
| author | FourteenBrush <74827262+FourteenBrush@users.noreply.github.com> | 2025-10-02 00:04:24 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-02 00:04:24 +0200 |
| commit | 4a8d84c1077a61a7d4967593b46a3aa4b3e8ef28 (patch) | |
| tree | 1d5075a2f7fcb53a8c4f62488b471855995f0123 /core/sys/linux | |
| parent | ea7e9bc11cedb7748547fcaf32837286396053ba (diff) | |
Make `linux.IO_Vec.base` a multipointer
Diffstat (limited to 'core/sys/linux')
| -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 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, } |