[SCM] PostGIS branch stable-3.4 updated. 3.4.2-54-gea1aa47bf

git at osgeo.org git at osgeo.org
Sat Aug 10 07:25:24 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.4 has been updated
       via  ea1aa47bfde23abd9d4b6395dc0ebb3e9609dda8 (commit)
      from  0884a4f6d5864a180bc7ea40fe2859a4f306241a (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 ea1aa47bfde23abd9d4b6395dc0ebb3e9609dda8
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