From dc4fe2fbd5ce79093858654c23907878f1413d27 Mon Sep 17 00:00:00 2001 From: bunnei Date: Mon, 1 Jan 2018 15:48:08 -0500 Subject: [PATCH] svc: Fix string formatting for CreateThread. --- src/core/hle/svc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp index 584294fc51..fa6fd9ab1b 100644 --- a/src/core/hle/svc.cpp +++ b/src/core/hle/svc.cpp @@ -318,7 +318,7 @@ static void ExitProcess() { /// Creates a new thread static ResultCode CreateThread(Handle* out_handle, VAddr entry_point, u64 arg, VAddr stack_top, u32 priority, s32 processor_id) { - std::string name = Common::StringFromFormat("unknown-%016" PRIX64, entry_point); + std::string name = Common::StringFromFormat("unknown-%llx", entry_point); if (priority > THREADPRIO_LOWEST) { return Kernel::ERR_OUT_OF_RANGE;