summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-02 18:19:05 +0200
committerLioncash <mathew1800@gmail.com>2018-08-02 18:21:46 +0200
commitc4e0c3d76ce4cf3cf3844b204ff7028ffa65a0d9 (patch)
treed491f1c2ab5a036e57d0080564447bfd1cd5fb74 /src/core/hle/kernel/svc.cpp
parentkernel/vm_manager: Use the VAddr type alias in CarveVMA() (diff)
downloadyuzu-c4e0c3d76ce4cf3cf3844b204ff7028ffa65a0d9.tar
yuzu-c4e0c3d76ce4cf3cf3844b204ff7028ffa65a0d9.tar.gz
yuzu-c4e0c3d76ce4cf3cf3844b204ff7028ffa65a0d9.tar.bz2
yuzu-c4e0c3d76ce4cf3cf3844b204ff7028ffa65a0d9.tar.lz
yuzu-c4e0c3d76ce4cf3cf3844b204ff7028ffa65a0d9.tar.xz
yuzu-c4e0c3d76ce4cf3cf3844b204ff7028ffa65a0d9.tar.zst
yuzu-c4e0c3d76ce4cf3cf3844b204ff7028ffa65a0d9.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/svc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index d1cbbc1f2..5db2db687 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -267,7 +267,7 @@ static ResultCode GetInfo(u64* result, u64 info_id, u64 handle, u64 info_sub_id)
LOG_TRACE(Kernel_SVC, "called info_id=0x{:X}, info_sub_id=0x{:X}, handle=0x{:08X}", info_id,
info_sub_id, handle);
- auto& vm_manager = Core::CurrentProcess()->vm_manager;
+ const auto& vm_manager = Core::CurrentProcess()->vm_manager;
switch (static_cast<GetInfoType>(info_id)) {
case GetInfoType::AllowedCpuIdBitmask: