Skip to content

Commit 141cb11

Browse files
Auto-format: cargo fmt --all
1 parent 772f358 commit 141cb11

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

crates/stdlib/src/faulthandler.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1074,8 +1074,7 @@ mod decl {
10741074
let save_errno2 = get_errno();
10751075
unsafe {
10761076
let mut action: libc::sigaction = core::mem::zeroed();
1077-
action.sa_sigaction =
1078-
faulthandler_user_signal as *const () as libc::sighandler_t;
1077+
action.sa_sigaction = faulthandler_user_signal as *const () as libc::sighandler_t;
10791078
action.sa_flags = libc::SA_NODEFER;
10801079
libc::sigaction(signum, &action, core::ptr::null_mut());
10811080
}

0 commit comments

Comments
 (0)