From 875f0c2470c862bba1d54ff9bf0b337989ded830 Mon Sep 17 00:00:00 2001 From: Gerald Pfeifer Date: Sun, 31 May 2009 23:51:44 +0200 Subject: [PATCH] msxml3: Tweak two assertions. --- dlls/msxml3/node.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msxml3/node.c b/dlls/msxml3/node.c index f33f6f8e6e4..19fa4c592ce 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; -- 2.11.4.GIT