summaryrefslogtreecommitdiff
path: root/src/btree/bt_handle.c
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2016-03-25 16:00:45 -0400
committerKeith Bostic <keith@wiredtiger.com>2016-03-25 16:00:45 -0400
commit3ad7ced19bd1bd622c0628226198eadd23021822 (patch)
treec68ebdf926075719f8e99b25ddda83099a869177 /src/btree/bt_handle.c
parent0a1e1b4a2a125deff8da0b7ab1946df0a320ee3c (diff)
downloadmongo-3ad7ced19bd1bd622c0628226198eadd23021822.tar.gz
WT-2330: in-memory configurations should not create on-disk collection files
Whitespace.
Diffstat (limited to 'src/btree/bt_handle.c')
-rw-r--r--src/btree/bt_handle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/btree/bt_handle.c b/src/btree/bt_handle.c
index 1d33a7e7c9a..02eea9c2f0c 100644
--- a/src/btree/bt_handle.c
+++ b/src/btree/bt_handle.c
@@ -36,8 +36,8 @@ __wt_btree_open(WT_SESSION_IMPL *session, const char *op_cfg[])
btree = S2BT(session);
/* Checkpoint files are readonly. */
- readonly = (dhandle->checkpoint != NULL ||
- F_ISSET(S2C(session), WT_CONN_READONLY));
+ readonly = dhandle->checkpoint != NULL ||
+ F_ISSET(S2C(session), WT_CONN_READONLY);
/* Get the checkpoint information for this name/checkpoint pair. */
WT_CLEAR(ckpt);