Skip to content

Commit 81d3fcf

Browse files
author
Gunter Schmidt
committed
fix: fuzz_side not compiling
1 parent e1f02bf commit 81d3fcf

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

fuzz/fuzz_targets/fuzz_side.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22
#[macro_use]
33
extern crate libfuzzer_sys;
44

5-
use diffutilslib::side_diff;
5+
use diffutilslib::side_diff::{self, Params};
66

77
use std::fs::File;
88
use std::io::Write;
9-
use diffutilslib::params::Params;
109

1110
fuzz_target!(|x: (Vec<u8>, Vec<u8>, /* usize, usize */ bool)| {
1211
let (original, new, /* width, tabsize, */ expand) = x;
@@ -39,4 +38,4 @@ fuzz_target!(|x: (Vec<u8>, Vec<u8>, /* usize, usize */ bool)| {
3938
.unwrap()
4039
.write_all(&output_buf)
4140
.unwrap();
42-
});
41+
});

0 commit comments

Comments
 (0)