1
Fork 0
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:
Sylvestre Ledru 2023-09-28 21:52:26 +02:00
parent e6f9e358d4
commit a576054d42
5 changed files with 13 additions and 13 deletions

View file

@ -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);
});