From 072401e28c4e86ab0e438321a612cbd4f559c80d Mon Sep 17 00:00:00 2001 From: Stephen Miller Date: Sat, 10 May 2025 13:06:15 -0500 Subject: [PATCH] Fix error log Should make the cause of this clearer? --- src/core/memory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/memory.cpp b/src/core/memory.cpp index a38f07bde..1ff3cfa20 100644 --- a/src/core/memory.cpp +++ b/src/core/memory.cpp @@ -307,7 +307,7 @@ int MemoryManager::PoolCommit(VAddr virtual_addr, size_t size, MemoryProt prot) // If the VMA isn't PoolReserved or if there's not enough space to commit, return EINVAL LOG_ERROR(Kernel_Vmm, "Pooled region {:#x} to {:#x} is not large enough to commit from {:#x} to {:#x}", - vma.base, vma.size, mapped_addr, size); + vma.base, vma.base + vma.size, mapped_addr, mapped_addr + size); return ORBIS_KERNEL_ERROR_EINVAL; }