diff options
| author | Mason Reed <mason@vector35.com> | 2024-12-14 12:52:42 -0500 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2024-12-14 12:52:42 -0500 |
| commit | 82cd67b9313f249e12ee4fd248a40db9dc6b4a07 (patch) | |
| tree | cd55ff882cdb89b5766eaee571e21cfb2d40711f /plugins/warp/src/matcher.rs | |
| parent | 5239ad6e8345e691fde31fd9f513fcf200e942aa (diff) | |
WARP: Run `cargo fmt`
Diffstat (limited to 'plugins/warp/src/matcher.rs')
| -rw-r--r-- | plugins/warp/src/matcher.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/warp/src/matcher.rs b/plugins/warp/src/matcher.rs index 86985cc2..8df72a20 100644 --- a/plugins/warp/src/matcher.rs +++ b/plugins/warp/src/matcher.rs @@ -23,8 +23,8 @@ use crate::cache::{ try_cached_function_guid, }; use crate::convert::to_bn_type; -use crate::{core_signature_dir, user_signature_dir}; use crate::plugin::on_matched_function; +use crate::{core_signature_dir, user_signature_dir}; pub static PLAT_MATCHER_CACHE: OnceLock<DashMap<PlatformID, Matcher>> = OnceLock::new(); @@ -62,7 +62,7 @@ impl Matcher { /// Create a matcher from the platforms signature subdirectory. pub fn from_platform(platform: BNRef<Platform>) -> Self { let platform_name = platform.name().to_string(); - + // Get core and user signatures. // TODO: Separate each file into own bucket for filtering? let plat_core_sig_dir = core_signature_dir().join(&platform_name); |
