aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei <ericbunnie@gmail.com>2014-05-18 21:43:41 -0400
committerGravatar bunnei <ericbunnie@gmail.com>2014-05-18 21:43:41 -0400
commit16d55842c561dea86ef79049abb00dafa76b08ef (patch)
tree9ace83ce6569c216b517d04b035328562e2870ca /src
parenteab6fd01d7d2e9b7434a8c5654d424cb563c3784 (diff)
fix warning
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/syscall.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/syscall.cpp b/src/core/hle/syscall.cpp
index 1d7daf95..84c247ae 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
DEBUG_LOG(SVC, "(UNIMPLEMENTED) WaitSynchronizationN called handle_count=%d, wait_all=%s, nanoseconds=%d %s",
handle_count, (wait_all ? "true" : "false"), nano_seconds);
- for (int i = 0; i < handle_count; i++) {
+ for (u32 i = 0; i < handle_count; i++) {
DEBUG_LOG(SVC, "\thandle[%d]=0x%08X", i, handles[i]);
}
return 0;