Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix type of libxml2 error callback function
Current libxml2 uses void(void *user, const xmlError *error), previously void(void *user, xmlError *error) was used. Switch the function definition to the current type and add a cast to avoid incompatible-pointer-types errors with newer compilers building against older libxml2.
- Loading branch information