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/cube/cube.c | |
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/cube/cube.c')
-rw-r--r-- | contrib/cube/cube.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/cube/cube.c b/contrib/cube/cube.c index 6e01800a4a8..01c6a9c5563 100644 --- a/contrib/cube/cube.c +++ b/contrib/cube/cube.c @@ -96,7 +96,7 @@ int32 cube_cmp_v0(NDBOX *a, NDBOX *b); bool cube_contains_v0(NDBOX *a, NDBOX *b); bool cube_overlap_v0(NDBOX *a, NDBOX *b); NDBOX *cube_union_v0(NDBOX *a, NDBOX *b); -void rt_cube_size(NDBOX *a, double *sz); +void rt_cube_size(NDBOX *a, double *size); NDBOX *g_cube_binary_union(NDBOX *r1, NDBOX *r2, int *sizep); bool g_cube_leaf_consistent(NDBOX *key, NDBOX *query, StrategyNumber strategy); bool g_cube_internal_consistent(NDBOX *key, NDBOX *query, StrategyNumber strategy); |