From e04188faecde98bc3b8c72848eb572c9b5cf8633 Mon Sep 17 00:00:00 2001 From: DH Date: Mon, 10 Nov 2025 01:06:44 +0300 Subject: [PATCH] orbis: fix compilation error --- kernel/orbis/src/vmem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/orbis/src/vmem.cpp b/kernel/orbis/src/vmem.cpp index 0109d1ead..70f663e7b 100644 --- a/kernel/orbis/src/vmem.cpp +++ b/kernel/orbis/src/vmem.cpp @@ -291,6 +291,6 @@ orbis::vmem::queryProtection(Process *process, std::uint64_t address) { orbis::vmem::MemoryProtection result{}; result.startAddress = it.beginAddress(); result.endAddress = it.endAddress(); - result.prot = it->prot.toUnderlying(); + result.prot = it->prot; return result; }