Remove useless mut
This commit is contained in:
committed by
Sean McArthur
parent
10d17e5f62
commit
13dd80be8d
@@ -119,7 +119,7 @@ async fn run(script: &[u8]) -> Result<(), h2::Error> {
|
|||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
env_logger::init();
|
env_logger::init();
|
||||||
let mut rt = tokio::runtime::Runtime::new().unwrap();
|
let rt = tokio::runtime::Runtime::new().unwrap();
|
||||||
loop {
|
loop {
|
||||||
honggfuzz::fuzz!(|data: &[u8]| {
|
honggfuzz::fuzz!(|data: &[u8]| {
|
||||||
eprintln!("{:?}", rt.block_on(run(data)));
|
eprintln!("{:?}", rt.block_on(run(data)));
|
||||||
|
|||||||
Reference in New Issue
Block a user