We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
size_of
1 parent 4f2c41a commit 6f0ebb8Copy full SHA for 6f0ebb8
src/unix/linux_like/linux/musl/mod.rs
@@ -422,11 +422,7 @@ s_no_extra_traits! {
422
pub aio_offset: off_t,
423
__next: *mut c_void,
424
__prev: *mut c_void,
425
- // FIXME(ctest): length should be `32 - 2 * size_of::<*const ()>()`
426
- #[cfg(target_pointer_width = "32")]
427
- __dummy4: [c_char; 24],
428
- #[cfg(target_pointer_width = "64")]
429
- __dummy4: [c_char; 16],
+ __dummy4: [c_char; 32 - 2 * size_of::<*const ()>()],
430
}
431
432
pub struct sysinfo {
0 commit comments