fix warning with unsigned long

This commit is contained in:
Vincent Torri 2023-09-10 07:29:08 +02:00 committed by Behdad Esfahbod
parent c1eb66d415
commit 17ee3cd7f4

View file

@ -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);
}