Skip to content

Commit 8303adc

Browse files
committed
[Rust] Misc formatting
1 parent 15750e2 commit 8303adc

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

rust/src/workflow.rs

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,16 @@ impl AnalysisContext {
8585

8686
pub fn set_mlil_function(&self, value: &MediumLevelILFunction) {
8787
// TODO: Mappings FFI
88-
unsafe { BNSetMediumLevelILFunction(self.handle.as_ptr(), value.handle, ptr::null_mut(), 0, ptr::null_mut(), 0) }
88+
unsafe {
89+
BNSetMediumLevelILFunction(
90+
self.handle.as_ptr(),
91+
value.handle,
92+
ptr::null_mut(),
93+
0,
94+
ptr::null_mut(),
95+
0,
96+
)
97+
}
8998
}
9099

91100
/// [`HighLevelILFunction`] used to represent High Level IL

0 commit comments

Comments
 (0)