Skip to content

Commit

Permalink
Cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
losfair committed Jun 4, 2019
1 parent 669f760 commit f1b27d5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/runtime-c-api/src/trampoline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ pub unsafe extern "C" fn wasmer_trampoline_buffer_builder_add_callinfo_trampolin
num_params: u32,
) -> usize {
let b = &mut *(b as *mut TrampolineBufferBuilder);
b.add_callinfo_trampoline(::std::mem::transmute(f), ctx as *const CallContext, num_params)
b.add_callinfo_trampoline(
::std::mem::transmute(f),
ctx as *const CallContext,
num_params,
)
}

#[no_mangle]
Expand Down

0 comments on commit f1b27d5

Please sign in to comment.