Skip to content

Commit 310b5d0

Browse files
committed
Fix clippy issues
1 parent 1f9a275 commit 310b5d0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/bolt/instrument.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ pub fn bolt_instrument(ctx: CargoContext, args: BoltInstrumentArgs) -> anyhow::R
7878
"{} {} instrumented successfully. Now run {} on your workload.",
7979
capitalize(get_artifact_kind(&artifact)).yellow(),
8080
artifact.target.name.blue(),
81-
cli_format_path(&instrumented_path.display())
81+
cli_format_path(instrumented_path.display())
8282
);
8383
}
8484
}

src/bolt/optimize.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ The optimization will probably not be very effective.",
7777
"{} {} successfully optimized with BOLT. You can find it at {}.",
7878
capitalize(get_artifact_kind(&artifact)).yellow(),
7979
artifact.target.name.blue(),
80-
cli_format_path(&optimized_path.display())
80+
cli_format_path(optimized_path.display())
8181
);
8282
}
8383
}

0 commit comments

Comments
 (0)