summaryrefslogtreecommitdiff
path: root/textproc/libxml2/patches/patch-timsort.h
blob: 0a5ef3f01b1566925419ec95d7bd3c97e8ed7056 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$NetBSD$

Cast argument (gcc says "unsigned int") to match %lu format.

--- timsort.h.orig	2016-02-09 10:17:34.000000000 +0000
+++ timsort.h
@@ -323,7 +323,7 @@ static void TIM_SORT_RESIZE(TEMP_STORAGE
     SORT_TYPE *tempstore = (SORT_TYPE *)realloc(store->storage, new_size * sizeof(SORT_TYPE));
     if (tempstore == NULL)
     {
-      fprintf(stderr, "Error allocating temporary storage for tim sort: need %lu bytes", sizeof(SORT_TYPE) * new_size);
+      fprintf(stderr, "Error allocating temporary storage for tim sort: need %lu bytes", (unsigned long)(sizeof(SORT_TYPE) * new_size));
       exit(1);
     }
     store->storage = tempstore;