diff --git a/vmm/src/memory_manager.rs b/vmm/src/memory_manager.rs index f7a640104..5f4b6462d 100644 --- a/vmm/src/memory_manager.rs +++ b/vmm/src/memory_manager.rs @@ -694,9 +694,13 @@ impl MemoryManager { let allocator = Arc::new(Mutex::new( SystemAllocator::new( #[cfg(target_arch = "x86_64")] - GuestAddress(0), + { + GuestAddress(0) + }, #[cfg(target_arch = "x86_64")] - (1 << 16 as GuestUsize), + { + 1 << 16 as GuestUsize + }, GuestAddress(0), mmio_address_space_size, layout::MEM_32BIT_DEVICES_START,