diff options
| author | Peter Geoghegan | 2026-04-22 16:47:19 +0000 |
|---|---|---|
| committer | Peter Geoghegan | 2026-04-22 16:47:19 +0000 |
| commit | d14f69a32a17924d93838491bc8e78a1a9b46807 (patch) | |
| tree | 12d14f83b84e49dc91888a70fdc7981689179e4c /src/bin | |
| parent | a50777680f6678bae39ffa04d01633bd023a5f48 (diff) | |
Harmonize function parameter names for Postgres 19.
Make sure that function declarations use names that exactly match the
corresponding names from function definitions in a few places. Most of
these inconsistencies were introduced during Postgres 19 development.
This commit was written with help from clang-tidy, by mechanically
applying the same rules as similar clean-up commits (the earliest such
commit was commit 035ce1fe).
Diffstat (limited to 'src/bin')
| -rw-r--r-- | src/bin/pg_upgrade/multixact_read_v18.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_upgrade/multixact_read_v18.h b/src/bin/pg_upgrade/multixact_read_v18.h index 0721041eeee..88b52b9d2e8 100644 --- a/src/bin/pg_upgrade/multixact_read_v18.h +++ b/src/bin/pg_upgrade/multixact_read_v18.h @@ -32,6 +32,6 @@ extern OldMultiXactReader *AllocOldMultiXactRead(char *pgdata, extern bool GetOldMultiXactIdSingleMember(OldMultiXactReader *state, MultiXactId multi, MultiXactMember *member); -extern void FreeOldMultiXactReader(OldMultiXactReader *reader); +extern void FreeOldMultiXactReader(OldMultiXactReader *state); #endif /* MULTIXACT_READ_V18_H */ |
