Skip to content

Commit

Permalink
drop unnecessary mut
Browse files Browse the repository at this point in the history
  • Loading branch information
addisoncrump committed Nov 6, 2022
1 parent 2adbe98 commit 7a1cbd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz/fuzz_targets/vm-implied.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use boa_engine::{Context, JsResult, JsValue};
use libfuzzer_sys::fuzz_target;
use libfuzzer_sys::Corpus;

fn do_fuzz(mut original: FuzzSource) -> JsResult<JsValue> {
fn do_fuzz(original: FuzzSource) -> JsResult<JsValue> {
let mut ctx = Context::builder()
.interner(original.interner)
.insns_remaining(1 << 16)
Expand Down

0 comments on commit 7a1cbd5

Please sign in to comment.