diff options
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 |
