From 16d55842c561dea86ef79049abb00dafa76b08ef Mon Sep 17 00:00:00 2001 From: bunnei Date: Sun, 18 May 2014 21:43:41 -0400 Subject: fix warning --- src/core/hle/syscall.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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 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; -- cgit v1.2.3