oleaut32/tests: Cast-qual warning fixes.

oldstable
Paul Vriens 2007-01-23 14:41:12 +01:00 committed by Alexandre Julliard
parent e89cac747c
commit 1d6132bed6
1 changed files with 2 additions and 2 deletions

View File

@ -277,12 +277,12 @@ static void test_CreateDispTypeInfo(void)
FUNCDESC *pFuncDesc;
MEMBERID memid;
static const WCHAR func1[] = {'f','u','n','c','1',0};
static WCHAR func1[] = {'f','u','n','c','1',0};
static const WCHAR func2[] = {'f','u','n','c','2',0};
static const WCHAR func3[] = {'f','u','n','c','3',0};
static const WCHAR parm1[] = {'p','a','r','m','1',0};
static const WCHAR parm2[] = {'p','a','r','m','2',0};
OLECHAR *name = (OLECHAR *)func1;
OLECHAR *name = func1;
ifdata.pmethdata = methdata;
ifdata.cMembers = sizeof(methdata) / sizeof(methdata[0]);