diff options
| author | Peter Geoghegan <pg@bowt.ie> | 2023-04-13 10:15:20 -0700 |
|---|---|---|
| committer | Peter Geoghegan <pg@bowt.ie> | 2023-04-13 10:15:20 -0700 |
| commit | d6f0f95a6bb7fa43731c6db83226a3c574041659 (patch) | |
| tree | 0d7f1e9c600b8bc5162dd3a03ed16454e7638199 /src/bin | |
| parent | f7431bca8b0138bdbce7025871560d39119565a0 (diff) | |
| download | postgresql-d6f0f95a6bb7fa43731c6db83226a3c574041659.tar.gz | |
Harmonize some more function parameter names.
Make sure that function declarations use names that exactly match the
corresponding names from function definitions in a few places. These
inconsistencies were all introduced relatively recently, after the code
base had parameter name mismatches fixed in bulk (see commits starting
with commits 4274dc22 and 035ce1fe).
pg_bsd_indent still has a couple of similar inconsistencies, which I
(pgeoghegan) have left untouched for now.
Like all earlier commits that cleaned up function parameter names, this
commit was written with help from clang-tidy.
Diffstat (limited to 'src/bin')
| -rw-r--r-- | src/bin/pg_dump/pg_dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index 7a504dfe25..73a6c964ba 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -290,7 +290,7 @@ static char *getFormattedOperatorName(const char *oproid); static char *convertTSFunction(Archive *fout, Oid funcOid); static const char *getFormattedTypeName(Archive *fout, Oid oid, OidOptions opts); static void getLOs(Archive *fout); -static void dumpLO(Archive *fout, const LoInfo *binfo); +static void dumpLO(Archive *fout, const LoInfo *loinfo); static int dumpLOs(Archive *fout, const void *arg); static void dumpPolicy(Archive *fout, const PolicyInfo *polinfo); static void dumpPublication(Archive *fout, const PublicationInfo *pubinfo); |
