Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonros committed Dec 26, 2024
1 parent 48c1f8b commit f413403
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libmwemu/src/emu/winapi64/ntdll.rs
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,9 @@ fn RtlAllocateHeap(emu: &mut emu::Emu) {
None => panic!("/!\\ out of memory cannot allocate ntdll!RtlAllocateHeap"),
};
let map_name = format!("valloc_{:x}", alloc_addr);
emu.maps.create_map(&map_name, alloc_addr, size).expect("ntdll!RtlAllocateHeap cannot create map");
emu.maps
.create_map(&map_name, alloc_addr, size)
.expect("ntdll!RtlAllocateHeap cannot create map");
//}

log::info!(
Expand Down

0 comments on commit f413403

Please sign in to comment.