diff --git a/libafl_frida/src/cmplog_rt.rs b/libafl_frida/src/cmplog_rt.rs index cacf6ac7ae..e97934c514 100644 --- a/libafl_frida/src/cmplog_rt.rs +++ b/libafl_frida/src/cmplog_rt.rs @@ -1,5 +1,5 @@ use dynasmrt::{dynasm, DynasmApi, DynasmLabelApi}; -use libafl_targets::cmplog::CMPLOG_MAP_W; +use libafl_targets::CMPLOG_MAP_W; use std::ffi::c_void; extern crate libafl_targets; diff --git a/libafl_targets/build.rs b/libafl_targets/build.rs index 5d7f66f1f6..0f332f0aa7 100644 --- a/libafl_targets/build.rs +++ b/libafl_targets/build.rs @@ -32,9 +32,9 @@ fn main() { pub const EDGES_MAP_SIZE: usize = {}; /// The size of the cmps map pub const CMP_MAP_SIZE: usize = {}; -/// The width of the CmpLog map +/// The width of the `CmpLog` map pub const CMPLOG_MAP_W: usize = {}; -/// The height of the CmpLog map +/// The height of the `CmpLog` map pub const CMPLOG_MAP_H: usize = {}; ", edges_map_size, cmp_map_size, cmplog_map_w, cmplog_map_h