comctl32/tests: Fix a variable type in monthcal.c. Removes 19 -Wsign-compare warnings.
authorMichael Stefaniuc <mstefani@redhat.de>
Tue, 11 Mar 2008 23:24:35 +0000 (00:24 +0100)
committerAlexandre Julliard <julliard@winehq.org>
Wed, 12 Mar 2008 10:59:19 +0000 (11:59 +0100)
dlls/comctl32/tests/monthcal.c

index c056ede567956321949dfdc6987d0b9700053256..cd9592d4d75bbe66c20f3fa7bc962c6bd6bb0567 100644 (file)
@@ -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));