diff --git a/core/memory/vma.cpp b/core/memory/vma.cpp index 6b2ba81..fbae18f 100644 --- a/core/memory/vma.cpp +++ b/core/memory/vma.cpp @@ -445,7 +445,7 @@ namespace Memory if (vmm.Check((void *)va, PTFlag::US)) continue; - fixme("Unable to get address %#lx, page is not user accessible", va); + debug("Unable to get address %#lx, page is not user accessible", va); return nullptr; } @@ -460,7 +460,7 @@ namespace Memory if (vmm.Check(Address, PTFlag::US)) return 0; - error("Address %#lx is not user accessible", Address); + debug("Address %#lx is not user accessible", Address); return -EFAULT; }