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 86c660cdf..fd91779a3 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp | |||
| @@ -474,7 +474,7 @@ static ResultCode WaitSynchronization(Core::System& system, Handle* index, VAddr | |||
| 474 | objects[i] = object; | 474 | objects[i] = object; |
| 475 | } | 475 | } |
| 476 | auto& synchronization = kernel.Synchronization(); | 476 | auto& synchronization = kernel.Synchronization(); |
| 477 | auto [result, handle_result] = synchronization.WaitFor(objects, nano_seconds); | 477 | const auto [result, handle_result] = synchronization.WaitFor(objects, nano_seconds); |
| 478 | *index = handle_result; | 478 | *index = handle_result; |
| 479 | return result; | 479 | return result; |
| 480 | } | 480 | } |