Michael Stefaniuc : comctl32/tests: Fix a variable type in monthcal.c. Removes 19 -Wsign-compare warnings.

Alexandre Julliard julliard at winehq.org
Wed Mar 12 06:44:15 CDT 2008


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

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Wed Mar 12 00:24:35 2008 +0100

comctl32/tests: Fix a variable type in monthcal.c. Removes 19 -Wsign-compare warnings.

---

 dlls/comctl32/tests/monthcal.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/comctl32/tests/monthcal.c b/dlls/comctl32/tests/monthcal.c
index c056ede..cd9592d 100644
--- a/dlls/comctl32/tests/monthcal.c
+++ b/dlls/comctl32/tests/monthcal.c
@@ -719,7 +719,7 @@ static void test_monthcal_unicode(HWND hwnd)
 static void test_monthcal_HitTest(HWND hwnd)
 {
     MCHITTESTINFO mchit;
-    int res;
+    UINT res;
     SYSTEMTIME st;
 
     memset(&mchit, 0, sizeof(MCHITTESTINFO));
@@ -911,7 +911,7 @@ static void test_monthcal_todaylink(HWND hwnd)
     MCHITTESTINFO mchit;
     SYSTEMTIME st_test, st_new;
     BOOL error = FALSE;
-    int res;
+    UINT res;
 
     memset(&mchit, 0, sizeof(MCHITTESTINFO));
 




More information about the wine-cvs mailing list