From 671709512c3f5a90c760ef2c294e94d9f9dcc868 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Sun, 1 Dec 2024 18:21:04 -0500 Subject: WARP: Run `cargo fmt` --- plugins/warp/src/matcher.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'plugins/warp/src/matcher.rs') 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); -- cgit v1.3.1