From b1e272366e669bcce42972f8240e39d3f19fa2da Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Wed, 11 Dec 2024 16:30:37 -0500 Subject: WARP: Run `cargo fmt` --- plugins/warp/src/plugin/add.rs | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'plugins/warp/src/plugin/add.rs') diff --git a/plugins/warp/src/plugin/add.rs b/plugins/warp/src/plugin/add.rs index 215ef90d..ef4f9f26 100644 --- a/plugins/warp/src/plugin/add.rs +++ b/plugins/warp/src/plugin/add.rs @@ -17,10 +17,12 @@ impl FunctionCommand for AddFunctionSignature { log::error!("Could not get low level IL for function."); return; }; - - let Some(save_file) = - binaryninja::interaction::get_save_filename_input("Use Signature File", "*.sbin", "user.sbin") - else { + + let Some(save_file) = binaryninja::interaction::get_save_filename_input( + "Use Signature File", + "*.sbin", + "user.sbin", + ) else { return; }; @@ -34,7 +36,7 @@ impl FunctionCommand for AddFunctionSignature { }; data = file_data; }; - + // Now add our function to the data. data.functions.push(cached_function(&func, &llil)); -- cgit v1.3.1