Skip to content

Commit

Permalink
Fix size of struct kinfo_file on 32-bit FreeBSD
Browse files Browse the repository at this point in the history
  • Loading branch information
asomers authored and tgross35 committed Nov 7, 2024
1 parent 8286345 commit 255b039
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unix/bsd/freebsdlike/freebsd/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1645,7 +1645,7 @@ s_no_extra_traits! {
pub kf_flags: ::c_int,
_kf_pad0: ::c_int,
pub kf_offset: i64,
_priv: [::uintptr_t; 38], // FIXME if needed
_priv: [u8; 304], // FIXME: this is really a giant union
pub kf_status: u16,
_kf_pad1: u16,
_kf_ispare0: ::c_int,
Expand Down

0 comments on commit 255b039

Please sign in to comment.