mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-15 09:44:46 +00:00
fix warning with unsigned long
This commit is contained in:
parent
c1eb66d415
commit
17ee3cd7f4
1 changed files with 1 additions and 1 deletions
|
@ -478,7 +478,7 @@ struct graph_t
|
|||
for (int i = vertices_.length - 1; i >= 0; i--)
|
||||
{
|
||||
const auto& v = vertices_[i];
|
||||
printf("%d: %lu [", i, v.table_size());
|
||||
printf("%d: %u [", i, (unsigned int)v.table_size());
|
||||
for (const auto &l : v.obj.real_links) {
|
||||
printf("%u, ", l.objidx);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue