Skip to content

Commit

Permalink
Fix a warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
mstange committed Feb 11, 2024
1 parent a051069 commit df41e7e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion samply-symbols/src/macho.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,10 @@ impl FatArchiveMember {
_ => None,
}
#[cfg(not(any(target_arch = "x86_64", target_arch = "aarch64")))]
None
{
let _ = arch;
None
}
} else {
None
}
Expand Down

0 comments on commit df41e7e

Please sign in to comment.