From 58f01e60d60634fb48988104432bae1d888635ec Mon Sep 17 00:00:00 2001 From: Michael Maltese Date: Mon, 6 Feb 2017 20:31:20 -0800 Subject: [PATCH] ES: use PRIx64 to print m_addtitle_tmd.GetTitleId() Fixes a warning on macOS with Clang. --- Source/Core/Core/IOS/ES/ES.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/IOS/ES/ES.cpp b/Source/Core/Core/IOS/ES/ES.cpp index 09c17fbc98..3c297e1903 100644 --- a/Source/Core/Core/IOS/ES/ES.cpp +++ b/Source/Core/Core/IOS/ES/ES.cpp @@ -403,7 +403,7 @@ IPCCommandResult ES::AddContentStart(const IOCtlVRequest& request) if (title_id != m_addtitle_tmd.GetTitleId()) { ERROR_LOG(IOS_ES, "IOCTL_ES_ADDCONTENTSTART: title id %016" PRIx64 " != " - "TMD title id %016lx, ignoring", + "TMD title id %016" PRIx64 ", ignoring", title_id, m_addtitle_tmd.GetTitleId()); }