Commit 875f0c24 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

msxml3: Tweak two assertions.

parent a105f924
......@@ -369,8 +369,8 @@ static HRESULT WINAPI xmlnode_get_nodeType(
TRACE("%p %p\n", This, type);
assert( NODE_ELEMENT == XML_ELEMENT_NODE );
assert( NODE_NOTATION == XML_NOTATION_NODE );
assert( (int)NODE_ELEMENT == (int)XML_ELEMENT_NODE );
assert( (int)NODE_NOTATION == (int)XML_NOTATION_NODE );
*type = This->node->type;
......
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