kernel32: Fix type of a loop variable in SNOOP16_Entry().

This commit is contained in:
Gerald Pfeifer 2008-01-12 19:53:23 +01:00 committed by Alexandre Julliard
parent 3f1a20b8b1
commit 221a8048b9
1 changed files with 2 additions and 1 deletions

View File

@ -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) {