From 48996497537c4790d8dea7f46ddfc08a1fe1ad07 Mon Sep 17 00:00:00 2001 From: Erwin Janssen Date: Thu, 1 Sep 2016 19:26:25 +0200 Subject: [PATCH] Resolved one -Wsign-conversion in cvt.c There are multiple -Wsign-conversion warnings, but only one could be resolved without analysing or changing more than a few lines of code. --- lib/pathplan/cvt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pathplan/cvt.c b/lib/pathplan/cvt.c index b5516ab2a..f5115d33d 100644 --- a/lib/pathplan/cvt.c +++ b/lib/pathplan/cvt.c @@ -118,7 +118,7 @@ int Pobspath(vconfig_t * config, Ppoint_t p0, int poly0, Ppoint_t p1, int poly1, Ppolyline_t * output_route) { int i, j, *dad; - int opn; + size_t opn; Ppoint_t *ops; COORD *ptvis0, *ptvis1; -- 2.40.0