Michael Stefaniuc : msxml3: Remove superfluous function pointer casts.

Alexandre Julliard julliard at winehq.org
Tue Dec 4 13:48:54 CST 2012


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

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Tue Dec  4 09:40:51 2012 +0100

msxml3: Remove superfluous function pointer casts.

---

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

diff --git a/dlls/msxml3/schema.c b/dlls/msxml3/schema.c
index 5626464..1c11349 100644
--- a/dlls/msxml3/schema.c
+++ b/dlls/msxml3/schema.c
@@ -838,7 +838,7 @@ static BOOL link_datatypes(xmlDocPtr schema)
     xmlNodePtr root, next, child;
     xmlNsPtr ns;
 
-    assert((void*)xmlGetExternalEntityLoader() == (void*)external_entity_loader);
+    assert(xmlGetExternalEntityLoader() == external_entity_loader);
     root = xmlDocGetRootElement(schema);
     if (!root)
         return FALSE;




More information about the wine-cvs mailing list