summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
-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 4f0a44363..47db0bacf 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -2537,7 +2537,7 @@ static ResultCode GetThreadList(Core::System& system, u32* out_num_threads, VAdd
2537 return ResultOutOfRange; 2537 return ResultOutOfRange;
2538 } 2538 }
2539 2539
2540 const auto* const current_process = system.Kernel().CurrentProcess(); 2540 auto* const current_process = system.Kernel().CurrentProcess();
2541 const auto total_copy_size = out_thread_ids_size * sizeof(u64); 2541 const auto total_copy_size = out_thread_ids_size * sizeof(u64);
2542 2542
2543 if (out_thread_ids_size > 0 && 2543 if (out_thread_ids_size > 0 &&