Skip to content

Commit

Permalink
let _ binding
Browse files Browse the repository at this point in the history
  • Loading branch information
addisoncrump committed Jan 18, 2023
1 parent 1d34f79 commit e9ca5b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libafl/src/corpus/testcase.rs
Expand Up @@ -371,7 +371,7 @@ where
let mut path = PathBuf::from(filename);
let lockname = format!(".{}.lafl_lock", path.file_name().unwrap().to_str().unwrap());
path.set_file_name(lockname);
std::fs::remove_file(path).ok();
let _ = std::fs::remove_file(path);
}
}
}
Expand Down

0 comments on commit e9ca5b4

Please sign in to comment.