Skip to content

Commit 536abfb

Browse files
committed
fuzz: remove a warning
1 parent 816533b commit 536abfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fuzz/uufuzz/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ pub fn generate_random_file() -> Result<String, std::io::Error> {
423423

424424
let content_length = rng.random_range(10..1000);
425425
let content: String = (0..content_length)
426-
.map(|_| (rng.random_range(b' '..=b'~') as char))
426+
.map(|_| rng.random_range(b' '..=b'~') as char)
427427
.collect();
428428

429429
file.write_all(content.as_bytes())?;

0 commit comments

Comments
 (0)