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

Alexandre Julliard julliard at winehq.org
Wed Aug 18 12:10:01 CDT 2010


Module: wine
Branch: master
Commit: f3a645f0deed7b18aca9487a5852f8bdc85bbd96
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=f3a645f0deed7b18aca9487a5852f8bdc85bbd96

Author: Marko Nikolic <grkoma at gmail.com>
Date:   Tue Aug 17 15:39:24 2010 +0200

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

---

 dlls/advapi32/tests/eventlog.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/advapi32/tests/eventlog.c b/dlls/advapi32/tests/eventlog.c
index 88a02c7..5b46eaf 100644
--- a/dlls/advapi32/tests/eventlog.c
+++ b/dlls/advapi32/tests/eventlog.c
@@ -633,7 +633,7 @@ static BOOL create_new_eventlog(void)
     HKEY key, eventkey;
     BOOL bret = FALSE;
     LONG lret;
-    int i;
+    DWORD i;
 
     /* First create our eventlog */
     lret = RegOpenKeyA(HKEY_LOCAL_MACHINE, eventlogsvc, &key);
@@ -711,7 +711,7 @@ static void test_readwrite(void)
     DWORD sidsize, count;
     BOOL ret, sidavailable;
     BOOL on_vista = FALSE; /* Used to indicate Vista, W2K8 or Win7 */
-    int i;
+    DWORD i;
     char *localcomputer = NULL;
     DWORD size;
 
@@ -1095,7 +1095,7 @@ static void cleanup_eventlog(void)
     BOOL bret;
     LONG lret;
     HKEY key;
-    int i;
+    DWORD i;
     char winesvc[MAX_PATH];
 
     /* Delete the registry tree */




More information about the wine-cvs mailing list