kernel32: Fix type of a loop variable in SNOOP16_Entry().
This commit is contained in:
parent
3f1a20b8b1
commit
221a8048b9
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue