Skip to content

Commit

Permalink
Remove unnecessary parens.
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhuene committed Apr 3, 2020
1 parent 3b75fdb commit 913fce4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/jit/src/unwind/winx64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ impl UnwindRegistry {
// The unwind information should be immediately following the function
// with padding for 4 byte alignment
unsafe {
*entry.u.UnwindInfoAddress_mut() = ((entry.EndAddress + 3) & !3);
*entry.u.UnwindInfoAddress_mut() = (entry.EndAddress + 3) & !3;
}

self.functions.push(entry);
Expand Down

0 comments on commit 913fce4

Please sign in to comment.