Skip to content

Commit

Permalink
fix include_bytes path
Browse files Browse the repository at this point in the history
  • Loading branch information
folkertdev committed Jan 15, 2024
1 parent a45a71f commit a42fdd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz/fuzz_targets/prefix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use libfuzzer_sys::fuzz_target;

use zlib::{Flush, ReturnCode};

const BYTES: &[u8] = include_bytes!("/home/folkertdev/rust/zlib-rs/silesia-small.tar");
const BYTES: &[u8] = include_bytes!("../../silesia-small.tar");

fuzz_target!(|input: (u8, u16)| {
let (level, n) = input;
Expand Down

0 comments on commit a42fdd5

Please sign in to comment.