Skip to content

Commit 94631d4

Browse files
committed
apply rustfmt
1 parent 4865c49 commit 94631d4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/wasmi/src/engine/executor/handler/dispatch.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ pub fn fetch_handler(ip: Ip) -> (Ip, Handler) {
2424
false => {
2525
let (ip, addr) = unsafe { ip.decode::<usize>() };
2626
let handler = unsafe {
27-
::core::mem::transmute::<*const (), Handler>(
28-
::core::ptr::with_exposed_provenance(addr)
29-
)
27+
::core::mem::transmute::<*const (), Handler>(::core::ptr::with_exposed_provenance(
28+
addr,
29+
))
3030
};
3131
(ip, handler)
3232
}

0 commit comments

Comments
 (0)