Skip to content

Commit 6ad8bc9

Browse files
committed
Fix clippy warning
1 parent a0c0945 commit 6ad8bc9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -403,8 +403,8 @@ fn diff_file(
403403
// Override here? Separate option or part of existing --override arg?
404404

405405
let (mut lhs_src, mut rhs_src) = match (
406-
guess_content(&lhs_bytes, &lhs_path, binary_overrides),
407-
guess_content(&rhs_bytes, &rhs_path, binary_overrides),
406+
guess_content(&lhs_bytes, lhs_path, binary_overrides),
407+
guess_content(&rhs_bytes, rhs_path, binary_overrides),
408408
) {
409409
(ProbableFileKind::Binary, _) | (_, ProbableFileKind::Binary) => {
410410
return DiffResult {

0 commit comments

Comments
 (0)