From 58624ef409d640416ffce902865372445a564261 Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Sat, 5 Aug 2017 03:19:20 +0200 Subject: [PATCH] ES: Fix wrong log message. --- Source/Core/Core/IOS/WFS/WFSI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/IOS/WFS/WFSI.cpp b/Source/Core/Core/IOS/WFS/WFSI.cpp index c35eeec0e9..cf60c31bb6 100644 --- a/Source/Core/Core/IOS/WFS/WFSI.cpp +++ b/Source/Core/Core/IOS/WFS/WFSI.cpp @@ -101,7 +101,7 @@ IPCCommandResult WFSI::IOCtl(const IOCtlRequest& request) constexpr u32 MAX_TMD_SIZE = 0x4000; if (tmd_size > MAX_TMD_SIZE) { - ERROR_LOG(IOS, "IOCTL_WFSI_INIT: TMD size too large (%d)", tmd_size); + ERROR_LOG(IOS, "IOCTL_WFSI_PREPARE_DEVICE: TMD size too large (%d)", tmd_size); return_error_code = IPC_EINVAL; break; }