summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Geoghegan2019-12-23 04:07:45 +0000
committerPeter Geoghegan2019-12-23 04:07:45 +0000
commit696cc3a0cabd5f11d0c8a187b7561f6d0d39c5e0 (patch)
treea654501ef337fb42dd30fe21657621a9d22424f1 /src
parentfe97c61c8777858cc1a271e657a7d812e100ef00 (diff)
Normalize _bt_finish_split() argument names.
Make a function prototype argument's name match the function definition's argument name.
Diffstat (limited to 'src')
-rw-r--r--src/include/access/nbtree.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/access/nbtree.h b/src/include/access/nbtree.h
index ef1eba06026..5e56aac63f3 100644
--- a/src/include/access/nbtree.h
+++ b/src/include/access/nbtree.h
@@ -748,7 +748,7 @@ extern void _bt_parallel_advance_array_keys(IndexScanDesc scan);
*/
extern bool _bt_doinsert(Relation rel, IndexTuple itup,
IndexUniqueCheck checkUnique, Relation heapRel);
-extern void _bt_finish_split(Relation rel, Buffer bbuf, BTStack stack);
+extern void _bt_finish_split(Relation rel, Buffer lbuf, BTStack stack);
extern Buffer _bt_getstackbuf(Relation rel, BTStack stack, BlockNumber child);
/*