Commit 59dd416f authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

widl: Fix a typo when removing TYPEFLAG_FDUAL.

parent 98fd1c56
......@@ -1877,7 +1877,7 @@ static void add_interface_typeinfo(msft_typelib_t *typelib, type_t *interface)
/* can't be dual if it doesn't derive from IDispatch */
if (!(msft_typeinfo->typeinfo->flags & 0x1000)) /* TYPEFLAG_FDISPATCHABLE */
msft_typeinfo->typeinfo->flags &= 0x40; /* TYPEFLAG_FDUAL */
msft_typeinfo->typeinfo->flags &= ~0x40; /* TYPEFLAG_FDUAL */
if(interface->ref)
add_impl_type(msft_typeinfo, interface->ref);
......
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