Skip to content

Commit 21e5e62

Browse files
committed
Fix fields
1 parent b39d6fa commit 21e5e62

File tree

1 file changed

+2
-3
lines changed
  • src/unix/bsd/netbsdlike/openbsd

1 file changed

+2
-3
lines changed

src/unix/bsd/netbsdlike/openbsd/mod.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -770,10 +770,9 @@ impl siginfo_t {
770770
#[repr(C)]
771771
struct siginfo_proc {
772772
_si_signo: c_int,
773-
_si_errno: c_int,
774773
_si_code: c_int,
775-
#[cfg(target_pointer_width = "64")]
776-
__pad1: Padding<c_int>,
774+
_si_errno: c_int,
775+
_pad: Padding<[c_int; SI_PAD]>,
777776
_pid: crate::pid_t,
778777
_uid: crate::uid_t,
779778
_utime: crate::clock_t,

0 commit comments

Comments
 (0)