aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/mmgr/bump.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/utils/mmgr/bump.c')
-rw-r--r--src/backend/utils/mmgr/bump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/mmgr/bump.c b/src/backend/utils/mmgr/bump.c
index a98bafbcc03..c60c9c131e3 100644
--- a/src/backend/utils/mmgr/bump.c
+++ b/src/backend/utils/mmgr/bump.c
@@ -505,8 +505,8 @@ BumpAlloc(MemoryContext context, Size size, int flags)
#endif
/*
- * If requested size exceeds maximum for chunks we hand the the request
- * off to BumpAllocLarge().
+ * If requested size exceeds maximum for chunks we hand the request off to
+ * BumpAllocLarge().
*/
if (chunk_size > set->allocChunkLimit)
return BumpAllocLarge(context, size, flags);