aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/k_process.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-12-26 11:46:11 -0500
committerGitHub <noreply@github.com>2023-12-26 11:46:11 -0500
commitde1e5584b32edcc5b43dd7b5757ee4b361f9f70c (patch)
treea11721530b76fa281f0793ed8469fd9a847f5489 /src/core/hle/kernel/k_process.h
parent1559984f77c4cf7474a8f806046b709576e4e439 (diff)
parent47e44a6693ad2e8c7fbdaa23ed440d9780e1d54b (diff)
Merge pull request #12465 from liamwhite/proper-handle-table
service: fetch objects from the client handle table
Diffstat (limited to 'src/core/hle/kernel/k_process.h')
-rw-r--r--src/core/hle/kernel/k_process.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_process.h b/src/core/hle/kernel/k_process.h
index b5c6867a1..53c0e3316 100644
--- a/src/core/hle/kernel/k_process.h
+++ b/src/core/hle/kernel/k_process.h
@@ -552,7 +552,7 @@ private:
Result InitializeHandleTable(s32 size) {
// Try to initialize the handle table.
- R_TRY(m_handle_table.Initialize(this, size));
+ R_TRY(m_handle_table.Initialize(size));
// We succeeded, so note that we did.
m_is_handle_table_initialized = true;