Andrew Talbot : mstask: Sign-compare warnings fix.

Alexandre Julliard julliard at winehq.org
Tue Sep 2 08:32:53 CDT 2008


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

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Fri Aug 29 16:31:50 2008 +0100

mstask: Sign-compare warnings fix.

---

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

diff --git a/dlls/mstask/mstask_main.c b/dlls/mstask/mstask_main.c
index c7b3dea..df1f1d8 100644
--- a/dlls/mstask/mstask_main.c
+++ b/dlls/mstask/mstask_main.c
@@ -88,7 +88,7 @@ static HRESULT init_register_strtable(STRTABLEA *strtable)
     };
 #undef CLSID_EXPANSION_ENTRY
     static STRENTRYA pse[sizeof expns / sizeof expns[0]];
-    int i;
+    unsigned int i;
 
     strtable->cEntries = sizeof pse / sizeof pse[0];
     strtable->pse = pse;
@@ -114,7 +114,7 @@ static HRESULT init_register_strtable(STRTABLEA *strtable)
 
 static void cleanup_register_strtable(STRTABLEA *strtable)
 {
-    int i;
+    unsigned int i;
     for (i = 0; i < strtable->cEntries; i++)
     {
         HeapFree(GetProcessHeap(), 0, strtable->pse[i].pszName);




More information about the wine-cvs mailing list