mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 13:35:06 +00:00
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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue