diff options
| author | Mason Reed <mason@vector35.com> | 2025-07-02 02:10:27 -0400 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-07-02 02:10:27 -0400 |
| commit | 8303adc8095926ad8e4f3758f5e2677fa20450ce (patch) | |
| tree | 4a8f17ea57cf7bb803c51012d00cc02e5a122b6a /rust/src | |
| parent | 15750e2c858569266d53a51e311d266322adfdba (diff) | |
[Rust] Misc formatting
Diffstat (limited to 'rust/src')
| -rw-r--r-- | rust/src/workflow.rs | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/rust/src/workflow.rs b/rust/src/workflow.rs index 0f0f869d..1049cc2f 100644 --- a/rust/src/workflow.rs +++ b/rust/src/workflow.rs @@ -85,7 +85,16 @@ impl AnalysisContext { pub fn set_mlil_function(&self, value: &MediumLevelILFunction) { // TODO: Mappings FFI - unsafe { BNSetMediumLevelILFunction(self.handle.as_ptr(), value.handle, ptr::null_mut(), 0, ptr::null_mut(), 0) } + unsafe { + BNSetMediumLevelILFunction( + self.handle.as_ptr(), + value.handle, + ptr::null_mut(), + 0, + ptr::null_mut(), + 0, + ) + } } /// [`HighLevelILFunction`] used to represent High Level IL |
