summaryrefslogtreecommitdiffstats
path: root/src/2geom/path-intersection.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/2geom/path-intersection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/2geom/path-intersection.cpp b/src/2geom/path-intersection.cpp
index 2ad78e42f..9a4d65f72 100644
--- a/src/2geom/path-intersection.cpp
+++ b/src/2geom/path-intersection.cpp
@@ -25,7 +25,7 @@ int winding(Path const &path, Point p) {
if(iter->boundsFast().height()!=0.){ start = iter; break; }
}
int wind = 0;
- int cnt = 0;
+ unsigned cnt = 0;
bool starting = true;
for (Path::const_iterator iter = start; iter != start || starting
; ++iter, iter = (iter == path.end_closed()) ? path.begin() : iter )