diff options
author | Keith Bostic <keith@wiredtiger.com> | 2014-11-14 09:00:05 -0500 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2014-11-14 09:00:05 -0500 |
commit | f5dd302562f2280ac29862d9639b75264aea4907 (patch) | |
tree | 3592207726d91a3abbdf774f04626c4cc43ebbce | |
parent | 113f466734f700dbda4290178c3cb4aeec644746 (diff) | |
download | mongo-f5dd302562f2280ac29862d9639b75264aea4907.tar.gz |
KNF
-rw-r--r-- | src/txn/txn_ckpt.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/txn/txn_ckpt.c b/src/txn/txn_ckpt.c index d1e1391b81a..788308bdea0 100644 --- a/src/txn/txn_ckpt.c +++ b/src/txn/txn_ckpt.c @@ -359,8 +359,7 @@ __wt_txn_checkpoint(WT_SESSION_IMPL *session, const char *cfg[]) /* Flush dirty leaf pages before we start the checkpoint. */ session->isolation = txn->isolation = TXN_ISO_READ_COMMITTED; - WT_ERR(__checkpoint_apply( - session, cfg, __checkpoint_write_leaves)); + WT_ERR(__checkpoint_apply(session, cfg, __checkpoint_write_leaves)); /* * The underlying flush routine scheduled an asynchronous flush @@ -370,8 +369,7 @@ __wt_txn_checkpoint(WT_SESSION_IMPL *session, const char *cfg[]) * asynchronous flush as much time as possible before we wait. */ if (F_ISSET(conn, WT_CONN_CKPT_SYNC)) - WT_ERR(__checkpoint_apply( - session, cfg, __wt_checkpoint_sync)); + WT_ERR(__checkpoint_apply(session, cfg, __wt_checkpoint_sync)); /* Acquire the schema lock. */ F_SET(session, WT_SESSION_SCHEMA_LOCKED); |