Cleanup: Fix build warning on windows.

printf is called for a size_t (64 bit on x64) type
but the formatter is `%lu` (32 bit) leading to a
warning with MSVC.

`%zu` is the appropriate formatter.
This commit is contained in:
Ray molenkamp 2020-03-11 13:26:09 -06:00
parent 33c6b269d1
commit cbb854a98f
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ void AbstractHierarchyIterator::debug_print_export_graph(const ExportGraph &grap
}
}
}
printf(" (Total graph size: %lu objects\n", total_graph_size);
printf(" (Total graph size: %zu objects\n", total_graph_size);
}
void AbstractHierarchyIterator::export_graph_construct()