Skip to content

Commit f3ce283

Browse files
authored
Merge branch 'main' into generic-region-container
2 parents bc4e643 + a7dab8e commit f3ce283

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bitmap/backend/atomic_bitmap.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ impl NewBitmap for AtomicBitmap {
201201
#[cfg(windows)]
202202
let page_size = {
203203
use winapi::um::sysinfoapi::{GetSystemInfo, LPSYSTEM_INFO, SYSTEM_INFO};
204-
let mut sysinfo = MaybeUninit::zeroed();
204+
let mut sysinfo = std::mem::MaybeUninit::zeroed();
205205
// SAFETY: It's safe to call `GetSystemInfo` as `sysinfo` is rightly sized
206206
// allocated memory.
207207
unsafe { GetSystemInfo(sysinfo.as_mut_ptr()) };

0 commit comments

Comments
 (0)