summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc_common.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/svc_common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc_common.h b/src/core/hle/kernel/svc_common.h
index 8a8f347b5..60ea2c405 100644
--- a/src/core/hle/kernel/svc_common.h
+++ b/src/core/hle/kernel/svc_common.h
@@ -22,7 +22,7 @@ enum PseudoHandle : Handle {
CurrentProcess = 0xFFFF8001,
};
-constexpr bool IsPseudoHandle(const Handle& handle) {
+constexpr bool IsPseudoHandle(Handle handle) {
return handle == PseudoHandle::CurrentProcess || handle == PseudoHandle::CurrentThread;
}