diff options
| author | Peter Geoghegan | 2022-09-22 20:59:20 +0000 |
|---|---|---|
| committer | Peter Geoghegan | 2022-09-22 20:59:20 +0000 |
| commit | 0faf7d933f625eb1668dcaa518b472f722b53a55 (patch) | |
| tree | 5fce7103c75871bec2ec1636d8751245cb7374a0 /contrib/fuzzystrmatch | |
| parent | 8fb4e001e9c185250a95b2b13880a2a04d626b75 (diff) | |
Harmonize parameter names in contrib code.
Make sure that function declarations use names that exactly match the
corresponding names from function definitions in contrib code.
Like other recent commits that cleaned up function parameter names, this
commit was written with help from clang-tidy.
Author: Peter Geoghegan <pg@bowt.ie>
Discussion: https://postgr.es/m/CAH2-WznJt9CMM9KJTMjJh_zbL5hD9oX44qdJ4aqZtjFi-zA3Tg@mail.gmail.com
Diffstat (limited to 'contrib/fuzzystrmatch')
| -rw-r--r-- | contrib/fuzzystrmatch/dmetaphone.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/fuzzystrmatch/dmetaphone.c b/contrib/fuzzystrmatch/dmetaphone.c index 6f4d2b730e9..f8f2c2b447d 100644 --- a/contrib/fuzzystrmatch/dmetaphone.c +++ b/contrib/fuzzystrmatch/dmetaphone.c @@ -117,7 +117,7 @@ The remaining code is authored by Andrew Dunstan <amdunstan@ncshp.org> and #include <ctype.h> /* prototype for the main function we got from the perl module */ -static void DoubleMetaphone(char *, char **); +static void DoubleMetaphone(char *str, char **codes); #ifndef DMETAPHONE_MAIN |
