Commit 3ca73da9 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

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

parent 0745ccb9
......@@ -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));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment