Add git cl format presubmit warning for extension and apps.
[chromium-blink-merge.git] / third_party / libxml / patches / LoadLibraryA
blob89fff15c86c4cb429de4c5985c4c66c19a15ba37
1 Change 'LoadLibrary' to 'LoadLibraryA' (used with 'const char*' as an
2 argument)
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  }
16  /*