diff options
| author | Mason Reed <mason@vector35.com> | 2024-12-01 18:21:04 -0500 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2024-12-01 18:21:31 -0500 |
| commit | 671709512c3f5a90c760ef2c294e94d9f9dcc868 (patch) | |
| tree | fed0d6179b3b2ddb1e27326a2241ba62eb98fa7c /plugins/warp/src/matcher.rs | |
| parent | 04120125575f3ee82010ed1760ad7c99fdd6a394 (diff) | |
WARP: Run `cargo fmt`
Diffstat (limited to 'plugins/warp/src/matcher.rs')
| -rw-r--r-- | plugins/warp/src/matcher.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/warp/src/matcher.rs b/plugins/warp/src/matcher.rs index eb9e2341..52180777 100644 --- a/plugins/warp/src/matcher.rs +++ b/plugins/warp/src/matcher.rs @@ -64,7 +64,11 @@ impl Matcher { // Get core signatures for the given platform let install_dir = binaryninja::install_directory().unwrap(); #[cfg(target_os = "macos")] - let root_core_sig_dir = install_dir.parent().unwrap().join("Resources").join("signatures"); + let root_core_sig_dir = install_dir + .parent() + .unwrap() + .join("Resources") + .join("signatures"); #[cfg(not(target_os = "macos"))] let root_core_sig_dir = install_dir.join("signatures"); let plat_core_sig_dir = root_core_sig_dir.join(&platform_name); |
