diff options
author | Keith Bostic <keith@wiredtiger.com> | 2015-09-23 21:45:15 -0400 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2015-09-23 21:45:15 -0400 |
commit | 25982c9329d04c49876e2d1109e2f05e9b3546c1 (patch) | |
tree | 317ea4ca350437e3a3747f5aaad3207d3e8fbec2 /src/lsm | |
parent | 088a2ad25d214d00b116c638ddbb232b9e8b60cf (diff) | |
download | mongo-25982c9329d04c49876e2d1109e2f05e9b3546c1.tar.gz |
Boolean conversion pass through block, conn and evict.
Diffstat (limited to 'src/lsm')
-rw-r--r-- | src/lsm/lsm_tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lsm/lsm_tree.c b/src/lsm/lsm_tree.c index 76f623a85ae..41e0c7c81e6 100644 --- a/src/lsm/lsm_tree.c +++ b/src/lsm/lsm_tree.c @@ -239,7 +239,7 @@ __lsm_tree_cleanup_old(WT_SESSION_IMPL *session, const char *uri) WT_DECL_RET; const char *cfg[] = { WT_CONFIG_BASE(session, WT_SESSION_drop), "force", NULL }; - int exists; + bool exists; WT_RET(__wt_exist(session, uri + strlen("file:"), &exists)); if (exists) |