Skip to content
This repository was archived by the owner on Nov 24, 2023. It is now read-only.

Commit 5de95a9

Browse files
committed
Fix compile on stable
1 parent 7f905f0 commit 5de95a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cargo-fix/src/cli.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ pub fn run() -> Result<(), Error> {
7777
fn log_message(msg: &diagnostics::Message) -> Result<(), Error> {
7878
use diagnostics::Message::*;
7979

80-
match msg {
81-
Fixing { file, fixes } => {
80+
match *msg {
81+
Fixing { ref file, ref fixes } => {
8282
log_for_human(
8383
"Fixing",
8484
&format!(

0 commit comments

Comments
 (0)