Don't use %zu
Some of our bots / compilers don't like it. Wasn't caught by bots because this
is only in debug code.
825ad378e0
This commit is contained in:
parent
c7e834a2fc
commit
d1f16fce96
@ -604,7 +604,7 @@ struct cmap
|
||||
+ 12 * groups.len; // SequentialMapGroup records
|
||||
void *dest = calloc (dest_sz, 1);
|
||||
if (unlikely (!dest)) {
|
||||
DEBUG_MSG(SUBSET, nullptr, "Unable to alloc %zu for cmap subset output", dest_sz);
|
||||
DEBUG_MSG(SUBSET, nullptr, "Unable to alloc %lu for cmap subset output", (unsigned long) dest_sz);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user