oleaut32/tests: Propagate the const instead of casting it away.
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
0bff174335
commit
e36476ff7e
|
@ -4807,7 +4807,7 @@ static void test_dump_typelib(const char *name)
|
|||
|
||||
for (func = 0; func < typeattr->cFuncs; func++)
|
||||
{
|
||||
function_info *fn_info = (function_info *)&ti->funcs[func];
|
||||
const function_info *fn_info = &ti->funcs[func];
|
||||
FUNCDESC *desc;
|
||||
BSTR namesTab[256];
|
||||
UINT cNames;
|
||||
|
|
Loading…
Reference in New Issue