summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2026-05-27 13:48:39 -0400
committerMason Reed <35282038+emesare@users.noreply.github.com>2026-05-28 14:09:06 -0400
commit8c7b2472924e92198e0364e6df896c0a5c4f7e9f (patch)
tree8f54aabb655ae14441e571ca9015cf81439df054
parent912465b5cf1d0442443d9584e15111361f27751c (diff)
[Rust] Misc formatting
-rw-r--r--rust/src/architecture.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/rust/src/architecture.rs b/rust/src/architecture.rs
index df2e66b7..d96dc34b 100644
--- a/rust/src/architecture.rs
+++ b/rust/src/architecture.rs
@@ -1776,7 +1776,11 @@ where
};
let mut ctx = unsafe {
- FunctionLifterContext::from_raw_with_arch(function, context, Some(*custom_arch.as_ref()))
+ FunctionLifterContext::from_raw_with_arch(
+ function,
+ context,
+ Some(*custom_arch.as_ref()),
+ )
};
custom_arch.lift_function(llil, &mut ctx)
}