From 80aecc21f83de0350f5e17672546218b316ea905 Mon Sep 17 00:00:00 2001 From: TheNotary Date: Tue, 21 Oct 2025 13:53:24 -0500 Subject: [PATCH] fixes issue where fdset struct's types couldn't resolve --- src/wasi/wasix.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wasi/wasix.rs b/src/wasi/wasix.rs index 755aa4d76b8e9..b5dabe5b179ae 100644 --- a/src/wasi/wasix.rs +++ b/src/wasi/wasix.rs @@ -269,7 +269,7 @@ s! { pub struct fd_set { __nfds: usize, - __fds: [c_int; FD_SETSIZE as usize], + __fds: [::c_int; ::FD_SETSIZE as usize], } pub struct termios {