From 69c20d2b75132d04f60f56fca251301f9bf27bfd Mon Sep 17 00:00:00 2001 From: kore Date: Wed, 29 Apr 2026 10:36:02 -0400 Subject: [PATCH] fix incorrect POLLOUT def on horizonOS/armv6k-nintendo-3ds --- src/unix/newlib/horizon/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unix/newlib/horizon/mod.rs b/src/unix/newlib/horizon/mod.rs index e94a0bb1c13d8..a006b69413da1 100644 --- a/src/unix/newlib/horizon/mod.rs +++ b/src/unix/newlib/horizon/mod.rs @@ -152,7 +152,7 @@ pub const WNOHANG: c_int = 1; pub const POLLIN: c_int = 0x0001; pub const POLLPRI: c_int = 0x0002; -pub const POLLOUT: c_int = 0x0004; +pub const POLLOUT: c_int = 0x0008; pub const POLLRDNORM: c_int = 0x0040; pub const POLLWRNORM: c_int = POLLOUT; pub const POLLRDBAND: c_int = 0x0080;