[SCM] PostGIS branch stable-3.0 updated. 3.0.11-3-g05a1c8969
git at osgeo.org
git at osgeo.org
Sat Aug 10 07:29:05 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.0 has been updated
via 05a1c8969919de685e6e05bbfe0d3fe4d7532e4f (commit)
from 66c509726dbd3e736de82e7f7b37676a0f239900 (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 05a1c8969919de685e6e05bbfe0d3fe4d7532e4f
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