Skip to content

Commit 1e69158

Browse files
committed
Fix pgindent comment breakage
1 parent ea0a8f0 commit 1e69158

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/backend/access/heap/visibilitymap.c

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -352,11 +352,15 @@ visibilitymap_truncate(Relation rel, BlockNumber nheapblocks)
352352
/* Clear out the unwanted bytes. */
353353
MemSet(&map[truncByte + 1], 0, MAPSIZE - (truncByte + 1));
354354

355-
/*
355+
/*----
356356
* Mask out the unwanted bits of the last remaining byte.
357357
*
358-
* ((1 << 0) - 1) = 00000000 ((1 << 1) - 1) = 00000001 ... ((1 << 6) -
359-
* 1) = 00111111 ((1 << 7) - 1) = 01111111
358+
* ((1 << 0) - 1) = 00000000
359+
* ((1 << 1) - 1) = 00000001
360+
* ...
361+
* ((1 << 6) - 1) = 00111111
362+
* ((1 << 7) - 1) = 01111111
363+
*----
360364
*/
361365
map[truncByte] &= (1 << truncBit) - 1;
362366

0 commit comments

Comments
 (0)