[SCM] PostGIS branch stable-3.4 updated. 3.4.4-41-g3fdbb5634
git at osgeo.org
git at osgeo.org
Fri Jul 25 01:13:26 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.4 has been updated
via 3fdbb563493bc974b2b33cc2012a2b1b9cf112dc (commit)
from 643ab10904f47dce8ea6f327d891289877e5a03d (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 3fdbb563493bc974b2b33cc2012a2b1b9cf112dc
Author: Sandro Santilli <strk at kbt.io>
Date: Fri Jul 25 10:10:23 2025 +0200
Fix printf format specifier
diff --git a/liblwgeom/lwgeom_topo.c b/liblwgeom/lwgeom_topo.c
index eb72fb92a..27900010f 100644
--- a/liblwgeom/lwgeom_topo.c
+++ b/liblwgeom/lwgeom_topo.c
@@ -3130,7 +3130,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/lwgeom_topo.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list