From 174f5a194b2fbffa4293eb1ad808d787fdc7481d Mon Sep 17 00:00:00 2001 From: Antonio Date: Wed, 4 Sep 2024 16:20:11 -0400 Subject: [PATCH] '' --- 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 3e9ce769d..44f96a001 100644 --- a/src/core/memory.cpp +++ b/src/core/memory.cpp @@ -317,7 +317,7 @@ int MemoryManager::Protect(VAddr addr, size_t size, MemoryProt prot) { MemoryProt invalid_flags = prot & ~valid_flags; if (u32(invalid_flags) != 0 && u32(invalid_flags) != u32(MemoryProt::NoAccess)) { LOG_ERROR(Core, "Invalid protection flags: prot = {:#x}, invalid flags = {:#x}", u32(prot), - invalid_flags); + u32(invalid_flags)); return ORBIS_KERNEL_ERROR_EINVAL; }