| Index: third_party/libxml/src/testlimits.c
|
| diff --git a/third_party/libxml/src/testlimits.c b/third_party/libxml/src/testlimits.c
|
| index 577f593ce497e4dd298f2d2dc8bc8fdf505b3bcf..68c94dbcf2b9722aa795c5ae6f9723c6e2b969fe 100644
|
| --- a/third_party/libxml/src/testlimits.c
|
| +++ b/third_party/libxml/src/testlimits.c
|
| @@ -1284,13 +1284,14 @@ saxTest(const char *filename, size_t limit, int options, int fail) {
|
| if (fail)
|
| res = 0;
|
| else {
|
| - fprintf(stderr, "Failed to parse '%s' %lu\n", filename, limit);
|
| + fprintf(stderr, "Failed to parse '%s' %lu\n", filename,
|
| + (unsigned long) limit);
|
| res = 1;
|
| }
|
| } else {
|
| if (fail) {
|
| fprintf(stderr, "Failed to get failure for '%s' %lu\n",
|
| - filename, limit);
|
| + filename, (unsigned long) limit);
|
| res = 1;
|
| } else
|
| res = 0;
|
| @@ -1339,7 +1340,7 @@ readerTest(const char *filename, size_t limit, int options, int fail) {
|
| filename, crazy_indx);
|
| else
|
| fprintf(stderr, "Failed to parse '%s' %lu\n",
|
| - filename, limit);
|
| + filename, (unsigned long) limit);
|
| res = 1;
|
| }
|
| } else {
|
| @@ -1349,7 +1350,7 @@ readerTest(const char *filename, size_t limit, int options, int fail) {
|
| filename, crazy_indx);
|
| else
|
| fprintf(stderr, "Failed to get failure for '%s' %lu\n",
|
| - filename, limit);
|
| + filename, (unsigned long) limit);
|
| res = 1;
|
| } else
|
| res = 0;
|
|
|