summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMat M <mathew1800@gmail.com>2018-12-04 04:25:29 +0100
committerGitHub <noreply@github.com>2018-12-04 04:25:29 +0100
commitadc4d332fc1a4054b80cfd575025351b970da689 (patch)
tree6b77ed9df16417a4a1aab3eceb9ee1e24419120d /src
parentMerge pull request #1840 from lioncash/info (diff)
parent[Kernel::CreateThread] Match format specifiers to LOG_TRACE's arguments (diff)
downloadyuzu-adc4d332fc1a4054b80cfd575025351b970da689.tar
yuzu-adc4d332fc1a4054b80cfd575025351b970da689.tar.gz
yuzu-adc4d332fc1a4054b80cfd575025351b970da689.tar.bz2
yuzu-adc4d332fc1a4054b80cfd575025351b970da689.tar.lz
yuzu-adc4d332fc1a4054b80cfd575025351b970da689.tar.xz
yuzu-adc4d332fc1a4054b80cfd575025351b970da689.tar.zst
yuzu-adc4d332fc1a4054b80cfd575025351b970da689.zip
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/kernel/svc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index e86d60c22..948989b31 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -1093,7 +1093,7 @@ static void ExitProcess() {
static ResultCode CreateThread(Handle* out_handle, VAddr entry_point, u64 arg, VAddr stack_top,
u32 priority, s32 processor_id) {
LOG_TRACE(Kernel_SVC,
- "called entrypoint=0x{:08X} ({}), arg=0x{:08X}, stacktop=0x{:08X}, "
+ "called entrypoint=0x{:08X}, arg=0x{:08X}, stacktop=0x{:08X}, "
"threadpriority=0x{:08X}, processorid=0x{:08X} : created handle=0x{:08X}",
entry_point, arg, stack_top, priority, processor_id, *out_handle);