summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2012-12-12 14:19:35 +0000
committerKeith Bostic <keith@wiredtiger.com>2012-12-12 14:19:35 +0000
commite47f2320c865bb89cdd488aace129e477135ad09 (patch)
tree3e718465aa0f352ad61f7865e77439bc825e21a0
parent7e139bbc265f46400d7068328afa1772a4a462bb (diff)
downloadmongo-e47f2320c865bb89cdd488aace129e477135ad09.tar.gz
typo in my last commit, return "ret", it can be set.
-rw-r--r--src/conn/conn_cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conn/conn_cache.c b/src/conn/conn_cache.c
index 6be87128f8f..8186bd0f34a 100644
--- a/src/conn/conn_cache.c
+++ b/src/conn/conn_cache.c
@@ -140,5 +140,5 @@ __wt_cache_destroy(WT_CONNECTION_IMPL *conn)
__wt_spin_destroy(session, &cache->evict_lock);
__wt_free(session, conn->cache);
- return (0);
+ return (ret);
}