Skip to content

Commit bb6e646

Browse files
committed
Fix unresolved name in libstd/sys/unix/thread
1 parent e5da5d5 commit bb6e646

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/sys/unix/thread.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ pub mod guard {
258258

259259
#[cfg(target_os = "solaris")]
260260
pub unsafe fn current() -> Option<usize> {
261-
let mut current_stack: libc::stack_t = mem::zeroed();
261+
let mut current_stack: libc::stack_t = ::mem::zeroed();
262262
assert_eq!(libc::stack_getbounds(&mut current_stack), 0);
263263
Some(current_stack.ss_sp as usize)
264264
}

0 commit comments

Comments
 (0)