diff --git a/src/core/memory.cpp b/src/core/memory.cpp index 5cde2a0af..0778fe47d 100644 --- a/src/core/memory.cpp +++ b/src/core/memory.cpp @@ -386,8 +386,7 @@ int MemoryManager::MapMemory(void** out_addr, VAddr virtual_addr, size_t size, M vma = FindVMA(mapped_addr)->second; remaining_size = vma.base + vma.size - mapped_addr; if (vma.IsMapped() || remaining_size < size) { - LOG_ERROR(Kernel_Vmm, "Unable to map {:#x} bytes at address {:#x}", size, - mapped_addr); + LOG_ERROR(Kernel_Vmm, "Unable to map {:#x} bytes at address {:#x}", size, mapped_addr); return ORBIS_KERNEL_ERROR_ENOMEM; } }