]> granicus.if.org Git - postgresql/commitdiff
Fix pgindent comment breakage
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Tue, 24 Sep 2013 21:19:14 +0000 (18:19 -0300)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Tue, 24 Sep 2013 21:21:11 +0000 (18:21 -0300)
src/backend/access/heap/visibilitymap.c

index eb5625906f12904b3248b9b0364998f03a625318..c1bf6a32f26a283d460adffde1c1fc85dc72221a 100644 (file)
@@ -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;