Home | History | Annotate | Download | only in patches
      1 Change 'LoadLibrary' to 'LoadLibraryA' (used with 'const char*' as an
      2 argument)
      3 
      4 Index: 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