Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
aeyakovenko committed Jan 21, 2022
1 parent f87aa8a commit 96ad900
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion perf/benches/dedup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ fn do_bench_dedup_packets(bencher: &mut Bencher, mut batches: Vec<PacketBatch>)
deduper.reset();
batches
.iter_mut()
.for_each(|b| b.packets.iter_mut().for_each(|p| p.meta.set_discard(false)));
.for_each(|b| b.packets.iter_mut().for_each(|p| p.meta.discard = false));
});
}

Expand Down

0 comments on commit 96ad900

Please sign in to comment.