Commit 221a8048 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

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

parent 3f1a20b8
...@@ -249,7 +249,8 @@ void WINAPI SNOOP16_Entry(FARPROC proc, LPBYTE args, CONTEXT86 *context) { ...@@ -249,7 +249,8 @@ void WINAPI SNOOP16_Entry(FARPROC proc, LPBYTE args, CONTEXT86 *context) {
SNOOP16_FUN *fun = NULL; SNOOP16_FUN *fun = NULL;
SNOOP16_RETURNENTRIES **rets = &firstrets; SNOOP16_RETURNENTRIES **rets = &firstrets;
SNOOP16_RETURNENTRY *ret; SNOOP16_RETURNENTRY *ret;
int i=0, max; unsigned i=0;
int max;
while (dll) { while (dll) {
if (xcs == dll->funhandle) { if (xcs == dll->funhandle) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment