Skip to content

Commit c299238

Browse files
committed
fuzzing fix
1 parent a5a0c1f commit c299238

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fuzz/fuzz_targets/smallvec_ops.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ fn do_test<const N: usize>(data: &[u8]) -> SmallVec<u8, N> {
161161
}
162162
}
163163
26 => {
164-
v = SmallVec::from_elem(next_u8!(bytes), next_usize!(bytes));
164+
v = smallvec::from_elem(next_u8!(bytes), next_usize!(bytes));
165165
}
166166
_ => panic!("booo"),
167167
}

0 commit comments

Comments
 (0)