summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-02-11 20:13:54 -0500
committerGitHub <noreply@github.com>2023-02-11 20:13:54 -0500
commitfbba6e10bc421aa3a3dc91282814e4d18ac8eb92 (patch)
treebc4f9a7c3570e734d7bf702e91d2dd8c8717c595 /src
parentc97b5c9ff9e3aec10bf0cab2ff954de3f61cec79 (diff)
parent868ab0d3b44a707960467ec714aec658b8f187be (diff)
Merge pull request #9781 from ColinKinloch/info_id_typo
kernel/svc: Fix undefined info_id
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/kernel/svc/svc_info.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/svc/svc_info.cpp b/src/core/hle/kernel/svc/svc_info.cpp
index 75097c7f9..ad56e2fe6 100644
--- a/src/core/hle/kernel/svc/svc_info.cpp
+++ b/src/core/hle/kernel/svc/svc_info.cpp
@@ -12,8 +12,8 @@ namespace Kernel::Svc {
/// Gets system/memory information for the current process
Result GetInfo(Core::System& system, u64* result, InfoType info_id_type, Handle handle,
u64 info_sub_id) {
- LOG_TRACE(Kernel_SVC, "called info_id=0x{:X}, info_sub_id=0x{:X}, handle=0x{:08X}", info_id,
- info_sub_id, handle);
+ LOG_TRACE(Kernel_SVC, "called info_id=0x{:X}, info_sub_id=0x{:X}, handle=0x{:08X}",
+ info_id_type, info_sub_id, handle);
u32 info_id = static_cast<u32>(info_id_type);