Skip to content

Commit c670e3e

Browse files
committed
Make Clippy happy
1 parent 64c584d commit c670e3e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

cargo-afl/src/config.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,11 @@ pub fn config(args: &Args) -> Result<()> {
6969
.status()
7070
.as_ref()
7171
.is_ok_and(ExitStatus::success);
72-
ensure!(success, "could not copy directory {afl_src_dir:?}");
72+
ensure!(
73+
success,
74+
"could not copy directory `{}`",
75+
afl_src_dir.display()
76+
);
7377
}
7478

7579
let work_dir = tempdir.path().join(AFL_SRC_PATH);

0 commit comments

Comments
 (0)