Fix wrongly converted specifiers

Sorry that was a lot in one go so some of them had some mistakes
This commit is contained in:
Daniel Lim Wee Soong 2018-03-27 23:37:36 +08:00
parent 0f4c9c9f47
commit 20776b37be
5 changed files with 12 additions and 12 deletions

View file

@ -865,7 +865,7 @@ static ResultCode GetProcessIdOfThread(u32* process_id, Handle thread_handle) {
const SharedPtr<Process> process = thread->owner_process;
ASSERT_MSG(process != nullptr, "Invalid parent process for thread={:#X}", thread_handle);
ASSERT_MSG(process != nullptr, "Invalid parent process for thread={:#010X}", thread_handle);
*process_id = process->process_id;
return RESULT_SUCCESS;