aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/k_client_session.h
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2022-06-25 22:44:19 -0500
committergerman77 <juangerman-13@hotmail.com>2022-06-26 20:21:37 -0500
commita7d9be13840acd65d0d684666390758ede72c826 (patch)
tree37485f63b09576444173d6a765abe0bb95dd45db /src/core/hle/kernel/k_client_session.h
parentabfd690601eaa567b60c5eb844a688fe85e7dcea (diff)
core: Replace all instances of ResultCode with Result
Diffstat (limited to 'src/core/hle/kernel/k_client_session.h')
-rw-r--r--src/core/hle/kernel/k_client_session.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/kernel/k_client_session.h b/src/core/hle/kernel/k_client_session.h
index 7a7ec8450..0c750d756 100644
--- a/src/core/hle/kernel/k_client_session.h
+++ b/src/core/hle/kernel/k_client_session.h
@@ -9,7 +9,7 @@
#include "core/hle/kernel/slab_helpers.h"
#include "core/hle/result.h"
-union ResultCode;
+union Result;
namespace Core::Memory {
class Memory;
@@ -46,8 +46,8 @@ public:
return parent;
}
- ResultCode SendSyncRequest(KThread* thread, Core::Memory::Memory& memory,
- Core::Timing::CoreTiming& core_timing);
+ Result SendSyncRequest(KThread* thread, Core::Memory::Memory& memory,
+ Core::Timing::CoreTiming& core_timing);
void OnServerClosed();