aboutsummaryrefslogtreecommitdiff
path: root/core/sys/linux
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2025-12-10 18:09:01 +0000
committerGitHub <noreply@github.com>2025-12-10 18:09:01 +0000
commit3fc0320449a82b769cb8e9eda0d767f6ffcd7c4f (patch)
tree07c9d7f3b91a0e1bceca7f0eb2457b0b274bdecb /core/sys/linux
parent8610acb48f2fd0c9d280c9a7973caf8db4143cf9 (diff)
parent4a8d84c1077a61a7d4967593b46a3aa4b3e8ef28 (diff)
Merge pull request #5741 from FourteenBrush/patch-4
Make `linux.IO_Vec.base` a multipointer
Diffstat (limited to 'core/sys/linux')
-rw-r--r--core/sys/linux/types.odin2
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,
}