aboutsummaryrefslogtreecommitdiff
path: root/azalea-nbt
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-nbt')
-rwxr-xr-xazalea-nbt/benches/compare.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-nbt/benches/compare.rs b/azalea-nbt/benches/compare.rs
index 1634b45b..863e0b9a 100755
--- a/azalea-nbt/benches/compare.rs
+++ b/azalea-nbt/benches/compare.rs
@@ -25,7 +25,7 @@ pub fn bench_read_file(filename: &str, c: &mut Criterion) {
group.bench_function("azalea_parse", |b| {
b.iter(|| {
let input = black_box(input);
- let nbt = azalea_nbt::Nbt::read(&mut Cursor::new(&input)).unwrap();
+ let nbt = azalea_nbt::Nbt::read(&mut Cursor::new(input)).unwrap();
black_box(nbt);
})
});