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

This commit is contained in:
Michael Stefaniuc 2008-03-12 00:24:35 +01:00 committed by Alexandre Julliard
parent 0745ccb926
commit 3ca73da928
1 changed files with 2 additions and 2 deletions

View 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));