Commit 8b66db02 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

riched20/tests: Use correct integral type.

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