[SCM] PostGIS branch stable-3.1 updated. 3.1.11-9-g6ffd2352d

git at osgeo.org git at osgeo.org
Sat Aug 10 07:28:46 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, stable-3.1 has been updated
       via  6ffd2352d2b2df7e7084187c721cbea1a5799e4e (commit)
      from  ad025e0ec4e54b04cf9aef4339f37409ba857b10 (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 6ffd2352d2b2df7e7084187c721cbea1a5799e4e
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Sat Aug 10 07:24:46 2024 -0700

    Fix mis-matched prototypes in pagc_std_api.h

diff --git a/extensions/address_standardizer/pagc_std_api.h b/extensions/address_standardizer/pagc_std_api.h
index 2e0429386..73ca90a02 100644
--- a/extensions/address_standardizer/pagc_std_api.h
+++ b/extensions/address_standardizer/pagc_std_api.h
@@ -45,12 +45,12 @@ typedef struct STDADDR_s {  // define as required
    char *unit;
 } STDADDR;
 
-LEXICON * lex_init();
+LEXICON * lex_init(ERR_PARAM *err_p);
 int lex_add_entry(LEXICON *lex, int seq, char *word, char
 *stdword, SYMB token);
 void lex_free(LEXICON *lex);
 
-RULES *rules_init();
+RULES *rules_init(ERR_PARAM *err_p);
 int rules_add_rule(RULES *rules, int num, int *rule);
 int rules_add_rule_from_str(RULES *rules, char *rule);
 int rules_ready(RULES *rules);

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

Summary of changes:
 extensions/address_standardizer/pagc_std_api.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list