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:
parent
506963aaea
commit
8b66db027d
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue