diff options
| author | 2014-05-18 21:43:41 -0400 | |
|---|---|---|
| committer | 2014-05-18 21:43:41 -0400 | |
| commit | 16d55842c561dea86ef79049abb00dafa76b08ef (patch) | |
| tree | 9ace83ce6569c216b517d04b035328562e2870ca /src | |
| parent | - updated service(s) to be KernelObject's (diff) | |
| download | yuzu-16d55842c561dea86ef79049abb00dafa76b08ef.tar.gz yuzu-16d55842c561dea86ef79049abb00dafa76b08ef.tar.xz yuzu-16d55842c561dea86ef79049abb00dafa76b08ef.zip | |
fix warning
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/syscall.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/syscall.cpp b/src/core/hle/syscall.cpp index 1d7daf95c..84c247ae3 100644 --- a/src/core/hle/syscall.cpp +++ b/src/core/hle/syscall.cpp | |||
| @@ -120,7 +120,7 @@ Result WaitSynchronizationN(void* _out, void* _handles, u32 handle_count, u32 wa | |||
| 120 | DEBUG_LOG(SVC, "(UNIMPLEMENTED) WaitSynchronizationN called handle_count=%d, wait_all=%s, nanoseconds=%d %s", | 120 | DEBUG_LOG(SVC, "(UNIMPLEMENTED) WaitSynchronizationN called handle_count=%d, wait_all=%s, nanoseconds=%d %s", |
| 121 | handle_count, (wait_all ? "true" : "false"), nano_seconds); | 121 | handle_count, (wait_all ? "true" : "false"), nano_seconds); |
| 122 | 122 | ||
| 123 | for (int i = 0; i < handle_count; i++) { | 123 | for (u32 i = 0; i < handle_count; i++) { |
| 124 | DEBUG_LOG(SVC, "\thandle[%d]=0x%08X", i, handles[i]); | 124 | DEBUG_LOG(SVC, "\thandle[%d]=0x%08X", i, handles[i]); |
| 125 | } | 125 | } |
| 126 | return 0; | 126 | return 0; |