summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
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) {
365} 365}
366 366
367/// Get the ID of the specified process 367/// Get the ID of the specified process
368static ResultCode GetProcessId(u32* process_id, Handle process_handle) { 368static ResultCode GetProcessId(u64* process_id, Handle process_handle) {
369 LOG_TRACE(Kernel_SVC, "called process=0x{:08X}", process_handle); 369 LOG_TRACE(Kernel_SVC, "called process=0x{:08X}", process_handle);
370 370
371 const auto& handle_table = Core::CurrentProcess()->GetHandleTable(); 371 const auto& handle_table = Core::CurrentProcess()->GetHandleTable();