Skip to content

Commit 979ba31

Browse files
committed
[Rust] Fix misc formatting
1 parent 56ce6d3 commit 979ba31

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

rust/src/workflow.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,11 @@ impl AnalysisContext {
167167
let key = key.to_cstr();
168168
unsafe {
169169
let mut count = 0;
170-
let result = BNAnalysisContextGetSettingStringList(self.handle.as_ptr(), key.as_ptr(), &mut count);
170+
let result = BNAnalysisContextGetSettingStringList(
171+
self.handle.as_ptr(),
172+
key.as_ptr(),
173+
&mut count,
174+
);
171175
Array::new(result, count, ())
172176
}
173177
}

0 commit comments

Comments
 (0)