[SCM] PostGIS branch stable-3.2 updated. 3.2.7-17-gfa7431dcf
git at osgeo.org
git at osgeo.org
Sat Aug 10 07:28:27 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.2 has been updated
via fa7431dcf4be47a20542922c6bc4a7a2215aa8af (commit)
from efab0c402c063bd43a39a3a1b547029cea67e2eb (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 fa7431dcf4be47a20542922c6bc4a7a2215aa8af
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