From 5b4fb0571bac4880f626190597f4374307cce8e6 Mon Sep 17 00:00:00 2001 From: Bob Jamison Date: Tue, 27 Nov 2007 19:12:45 +0000 Subject: use size_t for comparison with strlen() to be more portable (bzr r4140) --- src/sp-shape.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sp-shape.cpp') diff --git a/src/sp-shape.cpp b/src/sp-shape.cpp index daf85b534..13500862a 100644 --- a/src/sp-shape.cpp +++ b/src/sp-shape.cpp @@ -1121,7 +1121,7 @@ static void sp_shape_snappoints(SPItem const *item, SnapPointsIter p) gchar const *nodetypes = item->repr->attribute("sodipodi:nodetypes"); int nodetype_index = 0; - bool nodetypes_out_of_date = strlen(nodetypes) != uint(shape->curve->end); + bool nodetypes_out_of_date = strlen(nodetypes) != (size_t)(shape->curve->end); // nodetypes might still be empty, e.g. for pure SVG files // or it might not have been updated yet -- cgit v1.2.3