We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 816533b commit 536abfbCopy full SHA for 536abfb
fuzz/uufuzz/src/lib.rs
@@ -423,7 +423,7 @@ pub fn generate_random_file() -> Result<String, std::io::Error> {
423
424
let content_length = rng.random_range(10..1000);
425
let content: String = (0..content_length)
426
- .map(|_| (rng.random_range(b' '..=b'~') as char))
+ .map(|_| rng.random_range(b' '..=b'~') as char)
427
.collect();
428
429
file.write_all(content.as_bytes())?;
0 commit comments