mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 03:27:44 +00:00
fuzz: fix clippy warnings
This commit is contained in:
parent
e6f9e358d4
commit
a576054d42
5 changed files with 13 additions and 13 deletions
|
@ -9,6 +9,6 @@ fuzz_target!(|data: &[u8]| {
|
|||
let args = data
|
||||
.split(|b| *b == delim)
|
||||
.filter_map(|e| std::str::from_utf8(e).ok())
|
||||
.map(|e| OsString::from(e));
|
||||
.map(OsString::from);
|
||||
uumain(args);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue