From f7eb1ef92461556ca42da7a17fce59d50625e197 Mon Sep 17 00:00:00 2001 From: wmayer Date: Sat, 29 Aug 2015 22:12:33 +0200 Subject: [PATCH] + fix various warnings --- src/Mod/Path/libarea/PythonStuff.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Path/libarea/PythonStuff.cpp b/src/Mod/Path/libarea/PythonStuff.cpp index ea33c3040..42d40e3cf 100644 --- a/src/Mod/Path/libarea/PythonStuff.cpp +++ b/src/Mod/Path/libarea/PythonStuff.cpp @@ -94,7 +94,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::const_iterator It = c.m_vertices.begin(); It != c.m_vertices.end(); It++, i++) {