[postgis-tickets] [SCM] PostGIS branch main updated. 3.1.0rc1-395-gab07f27

git at osgeo.org git at osgeo.org
Wed Aug 11 07:37:37 PDT 2021


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".

The branch, main has been updated
       via  ab07f273d3f65fab1ff7f0c885b99d94b50d671e (commit)
      from  b565cc631df71e8e8081a747e5dd211c486e2f35 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit ab07f273d3f65fab1ff7f0c885b99d94b50d671e
Author: Sandro Santilli <strk at kbt.io>
Date:   Wed Aug 11 16:37:29 2021 +0200

    Fix compiler warning

diff --git a/liblwgeom/lwgeom_topo.c b/liblwgeom/lwgeom_topo.c
index 427aad8..23b99c1 100644
--- a/liblwgeom/lwgeom_topo.c
+++ b/liblwgeom/lwgeom_topo.c
@@ -7056,7 +7056,7 @@ lwt_GetFaceContainingPoint(LWT_TOPOLOGY* topo, const LWPOINT* pt)
 {
   LWT_ISO_EDGE* closestEdge;
   LWT_ISO_EDGE* edges;
-  uint64_t numedges;
+  uint64_t numedges, i;
   LWGEOM *shortestLine;
   const POINT2D *shortestLineP0, *shortestLineP1;
   int closestSegmentIndex;
@@ -7068,7 +7068,6 @@ lwt_GetFaceContainingPoint(LWT_TOPOLOGY* topo, const LWPOINT* pt)
   LWT_ELEMID closestNode = 0;
   double dist;
   int containingFace = -1;
-  int i;
 
   closestEdge = lwt_be_getClosestEdge( topo, pt, &numedges,
     LWT_COL_EDGE_GEOM|

-----------------------------------------------------------------------

Summary of changes:
 liblwgeom/lwgeom_topo.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list