commit 6c1a836cd86bebc8670e22effcd8a3061a0b4a14
parent a0bac91d45d366f3fe60eed0af3e4c4ed1b8b825
Author: David Rubin <daviru007@icloud.com>
Date: Wed, 20 Dec 2023 12:54:20 -0800
correct inotify_event to use [*]u8
Co-authored-by: Xouncle <51252236+xdBronch@users.noreply.github.com>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rt/+linux/syscalls.ha b/rt/+linux/syscalls.ha
@@ -937,7 +937,7 @@ export type inotify_event = struct {
mask: u32,
cookie: u32,
length: u32,
- name: *const u8
+ name: [*]u8,
};
export fn shmat(id: int, addr: *const opaque, flag: int) *opaque = {