kernel: remove unecessary process member from handle table

This commit is contained in:
Liam 2023-12-24 19:23:03 -05:00
parent 6bd1dfa8cc
commit ac1e946390
2 changed files with 3 additions and 6 deletions

View file

@ -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;