diff options
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
| -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 584fa5b1c..a1c09dd78 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp | |||
| @@ -2530,7 +2530,7 @@ static ResultCode GetThreadList(Core::System& system, u32* out_num_threads, VAdd | |||
| 2530 | return ResultOutOfRange; | 2530 | return ResultOutOfRange; |
| 2531 | } | 2531 | } |
| 2532 | 2532 | ||
| 2533 | const auto* const current_process = system.Kernel().CurrentProcess(); | 2533 | auto* const current_process = system.Kernel().CurrentProcess(); |
| 2534 | const auto total_copy_size = out_thread_ids_size * sizeof(u64); | 2534 | const auto total_copy_size = out_thread_ids_size * sizeof(u64); |
| 2535 | 2535 | ||
| 2536 | if (out_thread_ids_size > 0 && | 2536 | if (out_thread_ids_size > 0 && |