summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2015-11-17 18:04:32 -0500
committerKeith Bostic <keith@wiredtiger.com>2015-11-17 18:04:32 -0500
commit782d4590dcac0a0a57481e86d77b3416d0fcce61 (patch)
treef786e81b17e6b0918feba0935bda72ae3677572f
parent846125e815935fec7d574b857d603835bd680629 (diff)
parentb7a15198b2ce7aa2191cb153b5b9a860377d1a23 (diff)
downloadmongo-782d4590dcac0a0a57481e86d77b3416d0fcce61.tar.gz
Merge branch 'develop' into wt-2182-split-up-the-tree-2
-rw-r--r--src/conn/conn_log.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conn/conn_log.c b/src/conn/conn_log.c
index 007d4273e72..1d44d816467 100644
--- a/src/conn/conn_log.c
+++ b/src/conn/conn_log.c
@@ -538,8 +538,8 @@ restart:
while (i < WT_SLOT_POOL) {
save_i = i;
slot = &log->slot_pool[i++];
- WT_ASSERT(session, slot->slot_state != 0 ||
- slot->slot_release_lsn.file >= log->write_lsn.file);
+ WT_ASSERT(session, slot->slot_state != 0 ||
+ slot->slot_release_lsn.file >= log->write_lsn.file);
if (slot->slot_state != WT_LOG_SLOT_WRITTEN)
continue;
written[written_i].slot_index = save_i;