summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_transfer_memory.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/k_transfer_memory.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/kernel/k_transfer_memory.h b/src/core/hle/kernel/k_transfer_memory.h
index 1e4fa9323..f56398b9c 100644
--- a/src/core/hle/kernel/k_transfer_memory.h
+++ b/src/core/hle/kernel/k_transfer_memory.h
@@ -19,7 +19,7 @@ class Memory;
namespace Kernel {
class KernelCore;
-class Process;
+class KProcess;
class KTransferMemory final
: public KAutoObjectWithSlabHeapAndContainer<KTransferMemory, KAutoObjectWithList> {
@@ -43,7 +43,7 @@ public:
static void PostDestroy(uintptr_t arg);
- Process* GetOwner() const {
+ KProcess* GetOwner() const {
return owner;
}
@@ -56,7 +56,7 @@ public:
}
private:
- Process* owner{};
+ KProcess* owner{};
VAddr address{};
Svc::MemoryPermission owner_perm{};
size_t size{};