Skip to content

Commit e9ca5b4

Browse files
committed
let _ binding
1 parent 1d34f79 commit e9ca5b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libafl/src/corpus/testcase.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ where
371371
let mut path = PathBuf::from(filename);
372372
let lockname = format!(".{}.lafl_lock", path.file_name().unwrap().to_str().unwrap());
373373
path.set_file_name(lockname);
374-
std::fs::remove_file(path).ok();
374+
let _ = std::fs::remove_file(path);
375375
}
376376
}
377377
}

0 commit comments

Comments
 (0)