From 221a8048b9aff88f401388a8d2c07a0c80d4f284 Mon Sep 17 00:00:00 2001 From: Gerald Pfeifer Date: Sat, 12 Jan 2008 19:53:23 +0100 Subject: [PATCH] kernel32: Fix type of a loop variable in SNOOP16_Entry(). --- dlls/kernel32/snoop16.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/kernel32/snoop16.c b/dlls/kernel32/snoop16.c index f0924333976..fb82ba9635e 100644 --- a/dlls/kernel32/snoop16.c +++ b/dlls/kernel32/snoop16.c @@ -249,7 +249,8 @@ void WINAPI SNOOP16_Entry(FARPROC proc, LPBYTE args, CONTEXT86 *context) { SNOOP16_FUN *fun = NULL; SNOOP16_RETURNENTRIES **rets = &firstrets; SNOOP16_RETURNENTRY *ret; - int i=0, max; + unsigned i=0; + int max; while (dll) { if (xcs == dll->funhandle) { -- 2.11.4.GIT