aboutsummaryrefslogtreecommitdiff
path: root/src/backend
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:20 -0300
commit1e691588c19f9c763bfb9e80682ed08033f467a1 (patch)
treedbf5b77c0edb97bf24b641b6ac0148b8a894ce47 /src/backend
parentea0a8f0d2266986171043e73e078464f6fa95535 (diff)
downloadpostgresql-1e691588c19f9c763bfb9e80682ed08033f467a1.tar.gz
postgresql-1e691588c19f9c763bfb9e80682ed08033f467a1.zip
Fix pgindent comment breakage
Diffstat (limited to 'src/backend')
-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 58bab7df102..4b83315263c 100644
--- a/src/backend/access/heap/visibilitymap.c
+++ b/src/backend/access/heap/visibilitymap.c
@@ -352,11 +352,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;