Clean up warnings in baby_fuzzers (#1981)
This commit is contained in:
parent
1fc5ba63fa
commit
15aabfe65d
@ -12,7 +12,7 @@ fn main() -> anyhow::Result<()> {
|
||||
let bindings = bindgen::builder()
|
||||
.header("first.h")
|
||||
.header("second.h")
|
||||
.parse_callbacks(Box::new(bindgen::CargoCallbacks))
|
||||
.parse_callbacks(Box::new(bindgen::CargoCallbacks::new()))
|
||||
.generate()?;
|
||||
|
||||
// Write the generated bindings to an output file.
|
||||
|
@ -1,6 +1,6 @@
|
||||
use std::env;
|
||||
|
||||
use libafl_cc::{ClangWrapper, CompilerWrapper, ToolWrapper};
|
||||
use libafl_cc::{ClangWrapper, ToolWrapper};
|
||||
|
||||
pub fn main() {
|
||||
let args: Vec<String> = env::args().collect();
|
||||
|
@ -1,6 +1,6 @@
|
||||
#[cfg(windows)]
|
||||
use std::ptr::write_volatile;
|
||||
use std::{path::PathBuf, ptr::write, time::Duration};
|
||||
use std::{path::PathBuf, ptr::write};
|
||||
|
||||
use libafl::{
|
||||
corpus::{InMemoryCorpus, OnDiskCorpus},
|
||||
|
Loading…
x
Reference in New Issue
Block a user