Skip to content

Commit d1eb3e8

Browse files
committed
Auto merge of #3078 - glaubitz:m68k-fixes, r=JohnTitor
m68k: Fix incorrect type for sigaction::sa_flags This fixes a trivial bug where the wrong type was assumed for sigaction::sa_flags.
2 parents bf16683 + 0754d92 commit d1eb3e8

File tree

1 file changed

+1
-1
lines changed
  • src/unix/linux_like/linux/gnu/b32/m68k

1 file changed

+1
-1
lines changed

src/unix/linux_like/linux/gnu/b32/m68k/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ s! {
55
pub struct sigaction {
66
pub sa_sigaction: ::sighandler_t,
77
pub sa_mask: ::sigset_t,
8-
pub sa_flags: ::c_ulong,
8+
pub sa_flags: ::c_int,
99
pub sa_restorer: ::Option<extern fn()>,
1010
}
1111

0 commit comments

Comments
 (0)