Fix library/std compilation on openbsd.
Fix a minor typo from #95241 which prevented compilation on x86_64-unknown-openbsd.
diff --git a/library/std/src/sys/unix/thread.rs b/library/std/src/sys/unix/thread.rs
index be70d00..bb4e4ee 100644
--- a/library/std/src/sys/unix/thread.rs
+++ b/library/std/src/sys/unix/thread.rs
@@ -522,7 +522,7 @@ unsafe fn get_stack_start() -> Option<*mut libc::c_void> {
// new thread
stack_ptr.addr() - current_stack.ss_size
};
- Some(stack_ptr.with_addr(stack_addr))
+ Some(stack_ptr.with_addr(stackaddr))
}
#[cfg(any(