Fix clippy warning

pull/864/head
Wilfred Hughes 2025-07-10 09:45:19 +07:00
parent a0c09454fc
commit 6ad8bc99db
1 changed files with 2 additions and 2 deletions

@ -403,8 +403,8 @@ fn diff_file(
// Override here? Separate option or part of existing --override arg?
let (mut lhs_src, mut rhs_src) = match (
guess_content(&lhs_bytes, &lhs_path, binary_overrides),
guess_content(&rhs_bytes, &rhs_path, binary_overrides),
guess_content(&lhs_bytes, lhs_path, binary_overrides),
guess_content(&rhs_bytes, rhs_path, binary_overrides),
) {
(ProbableFileKind::Binary, _) | (_, ProbableFileKind::Binary) => {
return DiffResult {