summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Cahill <michael.cahill@wiredtiger.com>2014-03-26 15:35:45 +1100
committerMichael Cahill <michael.cahill@wiredtiger.com>2014-03-26 15:35:45 +1100
commitbae3b4b871c67908c1d1ae6a9e93c20c053ad859 (patch)
tree460be2f043048ef5411ebd9a8c11d07964b9e469
parent1d33592856a3f475f46d1403f7593db59590a5b1 (diff)
downloadmongo-bae3b4b871c67908c1d1ae6a9e93c20c053ad859.tar.gz
Fix a comment: finish the sentence.
-rw-r--r--src/block/block_ext.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/block/block_ext.c b/src/block/block_ext.c
index 1ae0dbc2ce5..583b0b59961 100644
--- a/src/block/block_ext.c
+++ b/src/block/block_ext.c
@@ -888,7 +888,8 @@ __wt_block_extlist_merge(WT_SESSION_IMPL *session, WT_EXTLIST *a, WT_EXTLIST *b)
/*
* Sometimes the list we are merging is much bigger than the other: if
* so, swap the lists around to reduce the amount of work we need to do
- * during the merge. The size lists have to match as well, so
+ * during the merge. The size lists have to match as well, so this is
+ * only possible if both lists are tracking sizes, or neither are.
*/
if (a->track_size == b->track_size && a->entries > b->entries) {
tmp = *a;