Skip to content

Commit

Permalink
IOS/WFS: Fix logging message
Browse files Browse the repository at this point in the history
  • Loading branch information
leoetlino committed Apr 4, 2017
1 parent d8c476b commit cf04924
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Core/Core/IOS/WFS/WFSI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<u8> decrypted(input_size);
mbedtls_aes_crypt_cbc(&m_aes_ctx, MBEDTLS_AES_DECRYPT, input_size, m_aes_iv,
Expand Down

0 comments on commit cf04924

Please sign in to comment.