oleaut32/tests: Fix compilation on systems that don't support nameless unions.

This commit is contained in:
Francois Gouget 2007-10-14 14:34:58 +02:00 committed by Alexandre Julliard
parent 7785c93b02
commit 1766918dda
1 changed files with 2 additions and 2 deletions

View File

@ -1193,8 +1193,8 @@ static const interface_info info[] = {
};
#define check_type(elem, info) { \
expect_int((elem)->tdesc.vt, (info)->vt); \
expect_hex((elem)->paramdesc.wParamFlags, (info)->wParamFlags); \
expect_int((elem)->tdesc.vt, (info)->vt); \
expect_hex(U(*(elem)).paramdesc.wParamFlags, (info)->wParamFlags); \
}
static void test_dump_typelib(const char *name)