fix further warnings in libarea

This commit is contained in:
wmayer
2016-06-16 11:12:12 +02:00
parent 05884492ef
commit ef55b7ceef
3 changed files with 685 additions and 685 deletions

View File

@@ -63,7 +63,7 @@ boost::python::tuple transformed_point(const geoff_geometry::Matrix &matrix, dou
static void print_curve(const CCurve& c)
{
std::size_t nvertices = c.m_vertices.size();
printf("number of vertices = %d\n", nvertices);
printf("number of vertices = %lu\n", nvertices);
int i = 0;
for(std::list<CVertex>::const_iterator It = c.m_vertices.begin(); It != c.m_vertices.end(); It++, i++)
{