summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-12-19 04:30:53 +0100
committerLioncash <mathew1800@gmail.com>2018-12-19 04:30:56 +0100
commit43e1189688a948e167ade54fdf2ba4007289aefd (patch)
treeb00f881250c7c0679e401251aed411b72f2cea59 /src/core/hle/kernel/svc.cpp
parentkernel/process: Make process_id a 64-bit value (diff)
downloadyuzu-43e1189688a948e167ade54fdf2ba4007289aefd.tar
yuzu-43e1189688a948e167ade54fdf2ba4007289aefd.tar.gz
yuzu-43e1189688a948e167ade54fdf2ba4007289aefd.tar.bz2
yuzu-43e1189688a948e167ade54fdf2ba4007289aefd.tar.lz
yuzu-43e1189688a948e167ade54fdf2ba4007289aefd.tar.xz
yuzu-43e1189688a948e167ade54fdf2ba4007289aefd.tar.zst
yuzu-43e1189688a948e167ade54fdf2ba4007289aefd.zip
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
-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 348a22904..c8b60b16c 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -365,7 +365,7 @@ static ResultCode GetThreadId(u32* thread_id, Handle thread_handle) {
}
/// Get the ID of the specified process
-static ResultCode GetProcessId(u32* process_id, Handle process_handle) {
+static ResultCode GetProcessId(u64* process_id, Handle process_handle) {
LOG_TRACE(Kernel_SVC, "called process=0x{:08X}", process_handle);
const auto& handle_table = Core::CurrentProcess()->GetHandleTable();