Module: wine Branch: master Commit: 875f0c2470c862bba1d54ff9bf0b337989ded830 URL: http://source.winehq.org/git/wine.git/?a=commit;h=875f0c2470c862bba1d54ff9bf...
Author: Gerald Pfeifer gerald@pfeifer.com Date: Sun May 31 23:51:44 2009 +0200
msxml3: Tweak two assertions.
---
dlls/msxml3/node.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/msxml3/node.c b/dlls/msxml3/node.c index f33f6f8..19fa4c5 100644 --- a/dlls/msxml3/node.c +++ b/dlls/msxml3/node.c @@ -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;