We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 772f358 commit 141cb11Copy full SHA for 141cb11
crates/stdlib/src/faulthandler.rs
@@ -1074,8 +1074,7 @@ mod decl {
1074
let save_errno2 = get_errno();
1075
unsafe {
1076
let mut action: libc::sigaction = core::mem::zeroed();
1077
- action.sa_sigaction =
1078
- faulthandler_user_signal as *const () as libc::sighandler_t;
+ action.sa_sigaction = faulthandler_user_signal as *const () as libc::sighandler_t;
1079
action.sa_flags = libc::SA_NODEFER;
1080
libc::sigaction(signum, &action, core::ptr::null_mut());
1081
}
0 commit comments