diff options
Diffstat (limited to 'test/sys/test_uio.rs')
-rw-r--r-- | test/sys/test_uio.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sys/test_uio.rs b/test/sys/test_uio.rs index d0025b87..236560f4 100644 --- a/test/sys/test_uio.rs +++ b/test/sys/test_uio.rs @@ -205,7 +205,7 @@ fn test_process_vm_readv() { use nix::sys::wait::*; require_capability!(CAP_SYS_PTRACE); - let _ = ::FORK_MTX.lock().expect("Mutex got poisoned by another test"); + let _ = crate::FORK_MTX.lock().expect("Mutex got poisoned by another test"); // Pre-allocate memory in the child, since allocation isn't safe // post-fork (~= async-signal-safe) |