orbis: fix compilation error

This commit is contained in:
DH 2025-11-10 01:06:44 +03:00
parent 30e4728739
commit e04188faec

View file

@ -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;
}