[SCM] PostGIS branch master updated. 3.6.0beta1-7-g8e54582b8

git at osgeo.org git at osgeo.org
Fri Jul 25 01:10:38 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, master has been updated
       via  8e54582b89f315a721c9c47eaac8a9a52fcb639d (commit)
      from  bac95532a6e7b25d73243e5a984dc6879fceb771 (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 8e54582b89f315a721c9c47eaac8a9a52fcb639d
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 4042ee737..7f2df42c7 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