diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2013-09-24 18:19:14 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2013-09-24 18:21:28 -0300 |
commit | ea9a2bcea3a3372b7f296b1095aeebf65c27f32a (patch) | |
tree | e997a4dfd3434ef0500528e5c3430e3ef0b9f475 | |
parent | 98a746c1ea7b134d997570adae6bf84da78b7a2a (diff) | |
download | postgresql-ea9a2bcea3a3372b7f296b1095aeebf65c27f32a.tar.gz postgresql-ea9a2bcea3a3372b7f296b1095aeebf65c27f32a.zip |
Fix pgindent comment breakage
-rw-r--r-- | src/backend/access/heap/visibilitymap.c | 10 |
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; |