Commit e36476ff authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

oleaut32/tests: Propagate the const instead of casting it away.

parent 0bff1743
...@@ -4807,7 +4807,7 @@ static void test_dump_typelib(const char *name) ...@@ -4807,7 +4807,7 @@ static void test_dump_typelib(const char *name)
for (func = 0; func < typeattr->cFuncs; func++) 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; FUNCDESC *desc;
BSTR namesTab[256]; BSTR namesTab[256];
UINT cNames; UINT cNames;
......
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