Commit f3a645f0 authored by Marko Nikolic's avatar Marko Nikolic Committed by Alexandre Julliard

advapi32/tests: Removed sign comparison warnings in eventlog tests.

parent 8507db18
...@@ -633,7 +633,7 @@ static BOOL create_new_eventlog(void) ...@@ -633,7 +633,7 @@ static BOOL create_new_eventlog(void)
HKEY key, eventkey; HKEY key, eventkey;
BOOL bret = FALSE; BOOL bret = FALSE;
LONG lret; LONG lret;
int i; DWORD i;
/* First create our eventlog */ /* First create our eventlog */
lret = RegOpenKeyA(HKEY_LOCAL_MACHINE, eventlogsvc, &key); lret = RegOpenKeyA(HKEY_LOCAL_MACHINE, eventlogsvc, &key);
...@@ -711,7 +711,7 @@ static void test_readwrite(void) ...@@ -711,7 +711,7 @@ static void test_readwrite(void)
DWORD sidsize, count; DWORD sidsize, count;
BOOL ret, sidavailable; BOOL ret, sidavailable;
BOOL on_vista = FALSE; /* Used to indicate Vista, W2K8 or Win7 */ BOOL on_vista = FALSE; /* Used to indicate Vista, W2K8 or Win7 */
int i; DWORD i;
char *localcomputer = NULL; char *localcomputer = NULL;
DWORD size; DWORD size;
...@@ -1095,7 +1095,7 @@ static void cleanup_eventlog(void) ...@@ -1095,7 +1095,7 @@ static void cleanup_eventlog(void)
BOOL bret; BOOL bret;
LONG lret; LONG lret;
HKEY key; HKEY key;
int i; DWORD i;
char winesvc[MAX_PATH]; char winesvc[MAX_PATH];
/* Delete the registry tree */ /* Delete the registry tree */
......
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