Skip to content

Commit 3e0f69f

Browse files
committed
Cargo fmt
Signed-off-by: Ludvig Liljenberg <[email protected]>
1 parent 7794d3f commit 3e0f69f

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/hyperlight_host/src/hypervisor/inprocess.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,7 @@ impl<'a> Hypervisor for InprocessDriver<'a> {
7979
let entrypoint_fn: extern "win64" fn(u64, u64, u64) =
8080
unsafe { std::mem::transmute(self.args.entrypoint_raw as *const c_void) };
8181

82-
entrypoint_fn(
83-
self.args.peb_ptr_raw,
84-
seed,
85-
log::max_level() as u64,
86-
);
82+
entrypoint_fn(self.args.peb_ptr_raw, seed, log::max_level() as u64);
8783

8884
Ok(())
8985
}

0 commit comments

Comments
 (0)