[SCM] PostGIS branch stable-3.5 updated. 3.5.3-39-ga37489239

git at osgeo.org git at osgeo.org
Fri Jul 25 01:11:41 PDT 2025


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, stable-3.5 has been updated
       via  a37489239a51639b0218552f0dde0571442724b2 (commit)
      from  71ec392cfeb6837dd6d85ef28d75982226bba3f8 (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 a37489239a51639b0218552f0dde0571442724b2
Author: Sandro Santilli <strk at kbt.io>
Date:   Fri Jul 25 10:10:23 2025 +0200

    Fix printf format specifier

diff --git a/liblwgeom/topo/lwgeom_topo.c b/liblwgeom/topo/lwgeom_topo.c
index b0ff75459..89db41fe5 100644
--- a/liblwgeom/topo/lwgeom_topo.c
+++ b/liblwgeom/topo/lwgeom_topo.c
@@ -3125,7 +3125,7 @@ lwt_GetFaceEdges(LWT_TOPOLOGY* topo, LWT_ELEMID face_id, LWT_ELEMID **out )
     /* _lwt_FaceByEdges should have already invoked lwerror in this case */
     _lwt_release_edges(edges, numfaceedges);
     lwerror("Corrupted topology: unable to build geometry of face %"
-      LWTFMT_ELEMID " from its %llu edges", face_id, numfaceedges);
+      LWTFMT_ELEMID " from its %"PRIu64" edges", face_id, numfaceedges);
     return -1;
   }
 

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

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


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list