[SCM] PostGIS branch master updated. 3.5.0alpha2-44-g15a906117

git at osgeo.org git at osgeo.org
Wed Aug 28 07:05:04 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  15a9061171a643553c3ce2a5c85c7657ec2dd54c (commit)
      from  ef4ac019fa4a1fc33d430fe91f219a3969227947 (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 15a9061171a643553c3ce2a5c85c7657ec2dd54c
Author: Sandro Santilli <strk at kbt.io>
Date:   Wed Aug 28 16:04:48 2024 +0200

    More -pedantic warnings fixes

diff --git a/raster/rt_pg/rtpg_mapalgebra.c b/raster/rt_pg/rtpg_mapalgebra.c
index 7a14450a9..d821a2fa6 100644
--- a/raster/rt_pg/rtpg_mapalgebra.c
+++ b/raster/rt_pg/rtpg_mapalgebra.c
@@ -122,7 +122,7 @@ struct rtpg_nmapalgebra_arg_t {
 	rtpg_nmapalgebra_callback_arg	callback;
 };
 
-static rtpg_nmapalgebra_arg rtpg_nmapalgebra_arg_init() {
+static rtpg_nmapalgebra_arg rtpg_nmapalgebra_arg_init(void) {
 	rtpg_nmapalgebra_arg arg = NULL;
 
 	arg = palloc(sizeof(struct rtpg_nmapalgebra_arg_t));
@@ -2933,7 +2933,7 @@ struct rtpg_clip_arg_t {
 	rtpg_clip_band band;
 };
 
-static rtpg_clip_arg rtpg_clip_arg_init() {
+static rtpg_clip_arg rtpg_clip_arg_init(void) {
 	rtpg_clip_arg arg = NULL;
 
 	arg = palloc(sizeof(struct rtpg_clip_arg_t));
@@ -4014,7 +4014,7 @@ struct rtpg_colormap_arg_t {
 };
 
 static rtpg_colormap_arg
-rtpg_colormap_arg_init() {
+rtpg_colormap_arg_init(void) {
 	rtpg_colormap_arg arg = NULL;
 
 	arg = palloc(sizeof(struct rtpg_colormap_arg_t));

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

Summary of changes:
 raster/rt_pg/rtpg_mapalgebra.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list