msxml3: Tweak two assertions.

This commit is contained in:
Gerald Pfeifer 2009-05-31 23:51:44 +02:00 committed by Alexandre Julliard
parent a105f924f4
commit 875f0c2470
1 changed files with 2 additions and 2 deletions

View File

@ -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;