summaryrefslogtreecommitdiff
path: root/src/conn/conn_cache.c
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2015-09-24 12:44:34 -0400
committerKeith Bostic <keith@wiredtiger.com>2015-09-24 12:44:34 -0400
commitca5719a499a1b5eeb3bc85ff4ef7fe35086c4b23 (patch)
tree9970811b61abf713cb9d8b6f6bebd7aa19412427 /src/conn/conn_cache.c
parent3ead26930fdec40ea3a907f6060dff4821025b92 (diff)
downloadmongo-ca5719a499a1b5eeb3bc85ff4ef7fe35086c4b23.tar.gz
Boolean conversion pass over os_posix.
Diffstat (limited to 'src/conn/conn_cache.c')
-rw-r--r--src/conn/conn_cache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conn/conn_cache.c b/src/conn/conn_cache.c
index 0c1cfa60b25..a1d509e75bd 100644
--- a/src/conn/conn_cache.c
+++ b/src/conn/conn_cache.c
@@ -148,9 +148,9 @@ __wt_cache_create(WT_SESSION_IMPL *session, const char *cfg[])
"eviction target must be lower than the eviction trigger");
WT_ERR(__wt_cond_alloc(session,
- "cache eviction server", 0, &cache->evict_cond));
+ "cache eviction server", false, &cache->evict_cond));
WT_ERR(__wt_cond_alloc(session,
- "eviction waiters", 0, &cache->evict_waiter_cond));
+ "eviction waiters", false, &cache->evict_waiter_cond));
WT_ERR(__wt_spin_init(session, &cache->evict_lock, "cache eviction"));
WT_ERR(__wt_spin_init(session, &cache->evict_walk_lock, "cache walk"));