diff options
author | Peter Geoghegan | 2025-04-12 16:07:36 +0000 |
---|---|---|
committer | Peter Geoghegan | 2025-04-12 16:07:36 +0000 |
commit | a6cab6a78ee58356967a447fa2c6414732856986 (patch) | |
tree | cdad19ce29445a4b3c53a041d3f113ae7d61db61 /src/backend/utils/mmgr/mcxt.c | |
parent | fdb69dd582427e4976897d544867e65a0e767002 (diff) |
Harmonize function parameter names for Postgres 18.
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 during Postgres 18 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/backend/utils/mmgr/mcxt.c')
-rw-r--r-- | src/backend/utils/mmgr/mcxt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/mmgr/mcxt.c b/src/backend/utils/mmgr/mcxt.c index 677ee42596f..1f5ebf2e124 100644 --- a/src/backend/utils/mmgr/mcxt.c +++ b/src/backend/utils/mmgr/mcxt.c @@ -184,7 +184,7 @@ static void MemoryContextStatsInternal(MemoryContext context, int level, static void MemoryContextStatsPrint(MemoryContext context, void *passthru, const char *stats_string, bool print_to_stderr); -static void PublishMemoryContext(MemoryStatsEntry *memcxt_infos, +static void PublishMemoryContext(MemoryStatsEntry *memcxt_info, int curr_id, MemoryContext context, List *path, MemoryContextCounters stat, |