aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2013-09-24 18:19:14 -0300
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2013-09-24 18:21:28 -0300
commitea9a2bcea3a3372b7f296b1095aeebf65c27f32a (patch)
treee997a4dfd3434ef0500528e5c3430e3ef0b9f475
parent98a746c1ea7b134d997570adae6bf84da78b7a2a (diff)
downloadpostgresql-ea9a2bcea3a3372b7f296b1095aeebf65c27f32a.tar.gz
postgresql-ea9a2bcea3a3372b7f296b1095aeebf65c27f32a.zip
Fix pgindent comment breakage
-rw-r--r--src/backend/access/heap/visibilitymap.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/backend/access/heap/visibilitymap.c b/src/backend/access/heap/visibilitymap.c
index ffec6cbcc0c..7f40d89b9f1 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;