Skip to content

Commit

Permalink
Address Clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Jan 16, 2024
1 parent 787942a commit 2f55ff1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cargo-afl/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -241,12 +241,12 @@ where
let binding = common::afl_llvm_dir();
let p = binding.display();

let mut rustflags = format!(
let mut rustflags = String::from(
"-C debug-assertions \
-C overflow_checks \
-C codegen-units=1 \
-C opt-level=3 \
-C target-cpu=native "
-C target-cpu=native ",
);
let mut environment_variables = HashMap::<&str, String>::new();
environment_variables.insert("ASAN_OPTIONS", asan_options);
Expand Down

0 comments on commit 2f55ff1

Please sign in to comment.