summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-12-19 04:38:22 +0100
committerLioncash <mathew1800@gmail.com>2018-12-19 04:38:26 +0100
commit0906302ca92332c8928c3a896e66d85d229fadb9 (patch)
treec7447b0ed9dca81358730137e7112f6f5f6fc5af /src/core/hle/kernel/svc.cpp
parentkernel/thread: Make thread_id a 64-bit value (diff)
downloadyuzu-0906302ca92332c8928c3a896e66d85d229fadb9.tar
yuzu-0906302ca92332c8928c3a896e66d85d229fadb9.tar.gz
yuzu-0906302ca92332c8928c3a896e66d85d229fadb9.tar.bz2
yuzu-0906302ca92332c8928c3a896e66d85d229fadb9.tar.lz
yuzu-0906302ca92332c8928c3a896e66d85d229fadb9.tar.xz
yuzu-0906302ca92332c8928c3a896e66d85d229fadb9.tar.zst
yuzu-0906302ca92332c8928c3a896e66d85d229fadb9.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 c8b60b16c..bcc9864f3 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -350,7 +350,7 @@ static ResultCode SendSyncRequest(Handle handle) {
}
/// Get the ID for the specified thread.
-static ResultCode GetThreadId(u32* thread_id, Handle thread_handle) {
+static ResultCode GetThreadId(u64* thread_id, Handle thread_handle) {
LOG_TRACE(Kernel_SVC, "called thread=0x{:08X}", thread_handle);
const auto& handle_table = Core::CurrentProcess()->GetHandleTable();