diff options
| author | 2018-12-03 22:25:29 -0500 | |
|---|---|---|
| committer | 2018-12-03 22:25:29 -0500 | |
| commit | adc4d332fc1a4054b80cfd575025351b970da689 (patch) | |
| tree | 6b77ed9df16417a4a1aab3eceb9ee1e24419120d | |
| parent | Merge pull request #1840 from lioncash/info (diff) | |
| parent | [Kernel::CreateThread] Match format specifiers to LOG_TRACE's arguments (diff) | |
| download | yuzu-adc4d332fc1a4054b80cfd575025351b970da689.tar.gz yuzu-adc4d332fc1a4054b80cfd575025351b970da689.tar.xz yuzu-adc4d332fc1a4054b80cfd575025351b970da689.zip | |
Merge pull request #1852 from VPeruS/fix-format-string
[Kernel::CreateThread] Match format specifiers to LOG_TRACE's arguments
| -rw-r--r-- | src/core/hle/kernel/svc.cpp | 2 |
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() { | |||
| 1093 | static ResultCode CreateThread(Handle* out_handle, VAddr entry_point, u64 arg, VAddr stack_top, | 1093 | static ResultCode CreateThread(Handle* out_handle, VAddr entry_point, u64 arg, VAddr stack_top, |
| 1094 | u32 priority, s32 processor_id) { | 1094 | u32 priority, s32 processor_id) { |
| 1095 | LOG_TRACE(Kernel_SVC, | 1095 | LOG_TRACE(Kernel_SVC, |
| 1096 | "called entrypoint=0x{:08X} ({}), arg=0x{:08X}, stacktop=0x{:08X}, " | 1096 | "called entrypoint=0x{:08X}, arg=0x{:08X}, stacktop=0x{:08X}, " |
| 1097 | "threadpriority=0x{:08X}, processorid=0x{:08X} : created handle=0x{:08X}", | 1097 | "threadpriority=0x{:08X}, processorid=0x{:08X} : created handle=0x{:08X}", |
| 1098 | entry_point, arg, stack_top, priority, processor_id, *out_handle); | 1098 | entry_point, arg, stack_top, priority, processor_id, *out_handle); |
| 1099 | 1099 | ||