• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1Change 'LoadLibrary' to 'LoadLibraryA' (used with 'const char*' as an
2argument)
3
4Index: libxml/xmlmodule.c
5===================================================================
6--- libxml.orig/xmlmodule.c	2010-07-09 14:17:46.959288280 -0700
7+++ libxml/xmlmodule.c	2010-07-09 14:17:55.419051003 -0700
8@@ -300,7 +300,7 @@
9 static void *
10 xmlModulePlatformOpen(const char *name)
11 {
12-    return LoadLibrary(name);
13+    return LoadLibraryA(name);
14 }
15
16 /*
17