Andrew Talbot : qmgr: Sign-compare warnings fix.

Alexandre Julliard julliard at winehq.org
Mon Sep 8 07:41:12 CDT 2008


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

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Fri Sep  5 20:26:47 2008 +0100

qmgr: Sign-compare warnings fix.

---

 dlls/qmgr/qmgr_main.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/qmgr/qmgr_main.c b/dlls/qmgr/qmgr_main.c
index 5094874..9c6b345 100644
--- a/dlls/qmgr/qmgr_main.c
+++ b/dlls/qmgr/qmgr_main.c
@@ -76,7 +76,7 @@ static HRESULT init_register_strtable(STRTABLEA *strtable)
     };
 #undef CLSID_EXPANSION_ENTRY
     static STRENTRYA pse[sizeof expns / sizeof expns[0]];
-    int i;
+    DWORD i;
 
     strtable->cEntries = sizeof pse / sizeof pse[0];
     strtable->pse = pse;
@@ -98,7 +98,7 @@ static HRESULT init_register_strtable(STRTABLEA *strtable)
 
 static void cleanup_register_strtable(STRTABLEA *strtable)
 {
-    int i;
+    DWORD i;
     for (i = 0; i < strtable->cEntries; i++) {
         HeapFree(GetProcessHeap(), 0, strtable->pse[i].pszName);
         HeapFree(GetProcessHeap(), 0, strtable->pse[i].pszValue);




More information about the wine-cvs mailing list