From b2fc4d6142033e361dee91388d9515be3633763c Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Tue, 24 Sep 2013 18:19:14 -0300 Subject: [PATCH] Fix pgindent comment breakage --- src/backend/access/heap/visibilitymap.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/backend/access/heap/visibilitymap.c b/src/backend/access/heap/visibilitymap.c index ffec6cbcc0..7f40d89b9f 100644 --- a/src/backend/access/heap/visibilitymap.c +++ b/src/backend/access/heap/visibilitymap.c @@ -476,11 +476,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; -- 2.40.0