Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
axic committed Oct 6, 2020
1 parent 12fdef1 commit c016ff9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions bindings/rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,7 @@ impl From<ExecutionResult> for sys::FizzyExecutionResult {
impl Instance {
pub fn execute(&mut self, func_idx: u32, args: &[Value]) -> ExecutionResult {
ExecutionResult {
0: unsafe {
sys::fizzy_execute(self.ptr.as_ptr(), func_idx, args.as_ptr(), args.len(), 0)
},
0: unsafe { sys::fizzy_execute(self.ptr.as_ptr(), func_idx, args.as_ptr(), 0) },
}
}
}
Expand Down

0 comments on commit c016ff9

Please sign in to comment.