Andrew Talbot : msxml3: Remove unneeded cast.

Alexandre Julliard julliard at winehq.org
Mon Jan 14 09:33:12 CST 2008


Module: wine
Branch: master
Commit: d9cd7502d5aafff0de9363ca62818213d450cde7
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=d9cd7502d5aafff0de9363ca62818213d450cde7

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Sat Jan 12 16:05:33 2008 +0000

msxml3: Remove unneeded cast.

---

 dlls/msxml3/nodemap.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/msxml3/nodemap.c b/dlls/msxml3/nodemap.c
index 53f2171..1a7d4dc 100644
--- a/dlls/msxml3/nodemap.c
+++ b/dlls/msxml3/nodemap.c
@@ -227,7 +227,7 @@ static HRESULT WINAPI xmlnodemap_setNamedItem(
         nodeNew = xmlAddChild(node, ThisNew->node);
 
         if(namedItem)
-            *namedItem = create_node( (xmlNodePtr) nodeNew );
+            *namedItem = create_node( nodeNew );
 
         IUnknown_Release(pAttr);
 




More information about the wine-cvs mailing list