From: Alvaro Herrera Date: Tue, 24 Sep 2013 21:19:14 +0000 (-0300) Subject: Fix pgindent comment breakage X-Git-Tag: REL9_2_5~15 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=769c36ad1c565a7ad5d0a36ff450ef591f0dd150;p=postgresql Fix pgindent comment breakage --- diff --git a/src/backend/access/heap/visibilitymap.c b/src/backend/access/heap/visibilitymap.c index eb5625906f..c1bf6a32f2 100644 --- a/src/backend/access/heap/visibilitymap.c +++ b/src/backend/access/heap/visibilitymap.c @@ -451,11 +451,15 @@ visibilitymap_truncate(Relation rel, BlockNumber nheapblocks) /* Clear out the unwanted bytes. */ MemSet(&map[truncByte + 1], 0, MAPSIZE - (truncByte + 1)); - /* + /*---- * Mask out the unwanted bits of the last remaining byte. * - * ((1 << 0) - 1) = 00000000 ((1 << 1) - 1) = 00000001 ... ((1 << 6) - - * 1) = 00111111 ((1 << 7) - 1) = 01111111 + * ((1 << 0) - 1) = 00000000 + * ((1 << 1) - 1) = 00000001 + * ... + * ((1 << 6) - 1) = 00111111 + * ((1 << 7) - 1) = 01111111 + *---- */ map[truncByte] &= (1 << truncBit) - 1;