From 6ad8bc99dbabfe67d42bc9d781ab8979bce43100 Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Thu, 10 Jul 2025 09:45:19 +0100 Subject: [PATCH] Fix clippy warning --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 2d2e28008..c6851804f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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 {