From cf0492468dfe54f4fc75aa9ebd02aa87b986bbdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Tue, 4 Apr 2017 17:24:01 +0200 Subject: [PATCH] IOS/WFS: Fix logging message --- Source/Core/Core/IOS/WFS/WFSI.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/IOS/WFS/WFSI.cpp b/Source/Core/Core/IOS/WFS/WFSI.cpp index 16e97055d6..86e4fb492f 100644 --- a/Source/Core/Core/IOS/WFS/WFSI.cpp +++ b/Source/Core/Core/IOS/WFS/WFSI.cpp @@ -162,8 +162,8 @@ IPCCommandResult WFSI::IOCtl(const IOCtlRequest& request) u32 content_id = Memory::Read_U32(request.buffer_in + 0xC); u32 input_ptr = Memory::Read_U32(request.buffer_in + 0x10); u32 input_size = Memory::Read_U32(request.buffer_in + 0x14); - INFO_LOG(IOS, "%s: %08x bytes of data at %08x from content id %d", ioctl_name, content_id, - input_ptr, input_size); + INFO_LOG(IOS, "%s: %08x bytes of data at %08x from content id %d", ioctl_name, input_size, + input_ptr, content_id); std::vector decrypted(input_size); mbedtls_aes_crypt_cbc(&m_aes_ctx, MBEDTLS_AES_DECRYPT, input_size, m_aes_iv,