Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
Signed-off-by: Phani Sajja <[email protected]>
  • Loading branch information
sajjaphani committed Jul 17, 2024
1 parent 0f3c5f5 commit f3e25ff
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/bin/hab-ld64-wrapper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -425,9 +425,7 @@ fn parse_linker_arguments(
for argument in arguments {
let mut skip_argument = false;
let mut skip_prev_argument = false;
if let Some(known_argument) =
LDArgument::parse(previous_argument.as_deref(), &argument)
{
if let Some(known_argument) = LDArgument::parse(previous_argument.as_deref(), &argument) {
match known_argument {
LDArgument::Output(_) | LDArgument::InstallName(_) | LDArgument::LTOLibrary(_) => {
// Nothing to do for these arguments
Expand Down

0 comments on commit f3e25ff

Please sign in to comment.