[SCM] PostGIS branch master updated. 3.4.0rc1-1071-gff91a5acd

git at osgeo.org git at osgeo.org
Mon Mar 25 13:38:05 PDT 2024


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, master has been updated
       via  ff91a5acd205638bf6230c02391048883e0a4a35 (commit)
      from  d5ba6b71cf08baaf67d9646a7ca52d0dfb5c3e9c (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 ff91a5acd205638bf6230c02391048883e0a4a35
Author: Sandro Santilli <strk at kbt.io>
Date:   Mon Mar 25 21:37:40 2024 +0100

    Fix spurious number in debug line

diff --git a/liblwgeom/topo/lwgeom_topo.c b/liblwgeom/topo/lwgeom_topo.c
index a0e262b03..370c82447 100644
--- a/liblwgeom/topo/lwgeom_topo.c
+++ b/liblwgeom/topo/lwgeom_topo.c
@@ -18,7 +18,7 @@
  *
  **********************************************************************
  *
- * Copyright (C) 2015-2022 Sandro Santilli <strk at kbt.io>
+ * Copyright (C) 2015-2024 Sandro Santilli <strk at kbt.io>
  *
  **********************************************************************/
 
@@ -5441,7 +5441,7 @@ _lwt_AddLineEdge( LWT_TOPOLOGY* topo, LWLINE* edge, double tol,
   lwpoint_free(start_point); /* too late if lwt_AddPoint calls lwerror */
   if ( nid[0] == -1 ) return -1; /* lwerror should have been called */
   moved += mm;
-  LWDEBUGF(1, "start point added or found as being %" LWTFMT_ELEMID " (moved ? %d)", nid[1], mm);
+  LWDEBUGF(1, "node for start point added or found to be %" LWTFMT_ELEMID " (moved ? %d)", nid[0], mm);
 
 
   end_point = lwline_get_lwpoint(edge, edge->points->npoints-1);
@@ -5457,7 +5457,7 @@ _lwt_AddLineEdge( LWT_TOPOLOGY* topo, LWLINE* edge, double tol,
   lwpoint_free(end_point); /* too late if lwt_AddPoint calls lwerror */
   if ( nid[1] == -1 ) return -1; /* lwerror should have been called */
   moved += mm;
-  LWDEBUGF(1, "end point added or found as being %" LWTFMT_ELEMID " (moved ? %d)", nid[1], mm);
+  LWDEBUGF(1, "node for end point added or found to be %" LWTFMT_ELEMID " (moved ? %d)", nid[1], mm);
 
   /*
     -- Added endpoints may have drifted due to tolerance, so

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

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


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list