diff --git a/src/core/hle/service/ldn/client_process_monitor.cpp b/src/core/hle/service/ldn/client_process_monitor.cpp index 1279026d79..5278a21609 100644 --- a/src/core/hle/service/ldn/client_process_monitor.cpp +++ b/src/core/hle/service/ldn/client_process_monitor.cpp @@ -11,7 +11,7 @@ namespace Service::LDN { IClientProcessMonitor::IClientProcessMonitor(Core::System& system_) : ServiceFramework{system_, "IClientProcessMonitor"} { static const FunctionInfo functions[] = { - {0, &IClientProcessMonitor::RegisterClient, "RegisterClient"}, + {0, C<&IClientProcessMonitor::RegisterClient>, "RegisterClient"}, }; RegisterHandlers(functions); } @@ -19,8 +19,7 @@ IClientProcessMonitor::IClientProcessMonitor(Core::System& system_) IClientProcessMonitor::~IClientProcessMonitor() = default; Result IClientProcessMonitor::RegisterClient(Handle process_handle, u64 pid_placeholder) { - LOG_WARNING(Service_LDN, - "(STUBBED) called, process_handle=0x{:08X}, pid_placeholder=0x{:016X}", + LOG_WARNING(Service_LDN, "(STUBBED) called, process_handle={}, pid_placeholder={}", process_handle, pid_placeholder); R_SUCCEED();