Remove useless mut

This commit is contained in:
Anthony Ramine
2021-04-22 12:02:05 +02:00
committed by Sean McArthur
parent 10d17e5f62
commit 13dd80be8d

View File

@@ -119,7 +119,7 @@ async fn run(script: &[u8]) -> Result<(), h2::Error> {
fn main() {
env_logger::init();
let mut rt = tokio::runtime::Runtime::new().unwrap();
let rt = tokio::runtime::Runtime::new().unwrap();
loop {
honggfuzz::fuzz!(|data: &[u8]| {
eprintln!("{:?}", rt.block_on(run(data)));