msxml3: Remove superfluous function pointer casts.

Michael Stefaniuc mstefani at redhat.de
Tue Dec 4 02:40:51 CST 2012


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



More information about the wine-patches mailing list