From 7ed934a01d2ac8ab603b6dc24e918d8197192068 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Sat, 4 Oct 2025 08:05:46 -0600 Subject: [PATCH] Fix compilation of redox-rt without proc feature --- redox-rt/src/proc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redox-rt/src/proc.rs b/redox-rt/src/proc.rs index 64192376e3..69e8e583a3 100644 --- a/redox-rt/src/proc.rs +++ b/redox-rt/src/proc.rs @@ -933,7 +933,7 @@ pub fn new_child_process(args: &ForkArgs<'_>) -> Result { #[cfg(not(feature = "proc"))] ForkArgs::Init { this_thr_fd, auth } => { let thr_fd = FdGuard::new(syscall::dup(**auth, b"new-context")?); - let buf = ProcSchemeAttrs { + let buf = syscall::ProcSchemeAttrs { pid: 0, euid: 0, egid: 0,