Skip to content

Commit 769c36a

Browse files
committed
Fix pgindent comment breakage
1 parent c05e9ec commit 769c36a

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
@@ -451,11 +451,15 @@ visibilitymap_truncate(Relation rel, BlockNumber nheapblocks)
451451
/* Clear out the unwanted bytes. */
452452
MemSet(&map[truncByte + 1], 0, MAPSIZE - (truncByte + 1));
453453

454-
/*
454+
/*----
455455
* Mask out the unwanted bits of the last remaining byte.
456456
*
457-
* ((1 << 0) - 1) = 00000000 ((1 << 1) - 1) = 00000001 ... ((1 << 6) -
458-
* 1) = 00111111 ((1 << 7) - 1) = 01111111
457+
* ((1 << 0) - 1) = 00000000
458+
* ((1 << 1) - 1) = 00000001
459+
* ...
460+
* ((1 << 6) - 1) = 00111111
461+
* ((1 << 7) - 1) = 01111111
462+
*----
459463
*/
460464
map[truncByte] &= (1 << truncBit) - 1;
461465

0 commit comments

Comments
 (0)