riched20/tests: Use correct integral type.

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
Signed-off-by: Huw Davies <huw@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Eric Pouech 2022-03-04 09:24:56 +01:00 committed by Alexandre Julliard
parent 506963aaea
commit 8b66db027d
1 changed files with 4 additions and 2 deletions

View File

@ -947,7 +947,8 @@ static void test_ITextRange_GetStart_GetEnd(void)
ITextDocument *txtDoc = NULL;
ITextRange *txtRge = NULL;
HRESULT hres;
int first, lim, start, end;
int first, lim;
LONG start, end;
static const CHAR test_text1[] = "TestSomeText";
create_interfaces(&w, &reOle, &txtDoc, NULL);
@ -1166,7 +1167,8 @@ static void test_ITextSelection_GetStart_GetEnd(void)
ITextDocument *txtDoc = NULL;
ITextSelection *txtSel = NULL;
HRESULT hres;
int first, lim, start, end;
int first, lim;
LONG start, end;
static const CHAR test_text1[] = "TestSomeText";
create_interfaces(&w, &reOle, &txtDoc, &txtSel);