Andrew Talbot : comctl32: Sign-compare warnings fix.

Alexandre Julliard julliard at winehq.org
Mon Sep 22 07:03:57 CDT 2008


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

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Sat Sep 20 22:29:32 2008 +0100

comctl32: Sign-compare warnings fix.

---

 dlls/comctl32/syslink.c |    2 +-
 dlls/comctl32/theming.c |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/comctl32/syslink.c b/dlls/comctl32/syslink.c
index a78a00c..7f74b36 100644
--- a/dlls/comctl32/syslink.c
+++ b/dlls/comctl32/syslink.c
@@ -136,7 +136,7 @@ static PDOC_ITEM SYSLINK_AppendDocItem (SYSLINK_INFO *infoPtr, LPCWSTR Text, UIN
 {
     PDOC_ITEM Item;
 
-    textlen = min(textlen, lstrlenW(Text));
+    textlen = min(textlen, strlenW(Text));
     Item = Alloc(FIELD_OFFSET(DOC_ITEM, Text[textlen + 1]));
     if(Item == NULL)
     {
diff --git a/dlls/comctl32/theming.c b/dlls/comctl32/theming.c
index 090fe27..bab87cc 100644
--- a/dlls/comctl32/theming.c
+++ b/dlls/comctl32/theming.c
@@ -113,7 +113,7 @@ static const WNDPROC subclassProcs[NUM_SUBCLASSES] = {
  */
 void THEMING_Initialize (void)
 {
-    int i;
+    unsigned int i;
     static const WCHAR subclassPropName[] = 
         { 'C','C','3','2','T','h','e','m','i','n','g','S','u','b','C','l',0 };
     static const WCHAR refDataPropName[] = 
@@ -161,7 +161,7 @@ void THEMING_Initialize (void)
  */
 void THEMING_Uninitialize (void)
 {
-    int i;
+    unsigned int i;
 
     if (!atSubclassProp) return;  /* not initialized */
 




More information about the wine-cvs mailing list