diff options
author | Alex Gorrod <alexg@wiredtiger.com> | 2014-03-28 16:22:38 +1100 |
---|---|---|
committer | Alex Gorrod <alexg@wiredtiger.com> | 2014-03-28 16:22:38 +1100 |
commit | b762b6287e824e90c87c8d12ed300f5249b91556 (patch) | |
tree | 3561f4905c4963fadb62f3b95841ad7aa890a1d5 /src | |
parent | c05ae226e8fe473b8bbee13bf73797830ab3fde2 (diff) | |
download | mongo-b762b6287e824e90c87c8d12ed300f5249b91556.tar.gz |
Rename use of WT_READGEN_OLDEST to WT_READ_GEN_OLDEST.
Since the variable name is different on this branch.
Diffstat (limited to 'src')
-rw-r--r-- | src/btree/bt_evict.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/btree/bt_evict.c b/src/btree/bt_evict.c index e43df79db89..a4f859ef433 100644 --- a/src/btree/bt_evict.c +++ b/src/btree/bt_evict.c @@ -1191,7 +1191,7 @@ __wt_evict_lru_page(WT_SESSION_IMPL *session, int is_app) * the page and some other thread may have evicted it by the time we * look at it. */ - if (page->read_gen != WT_READGEN_OLDEST) + if (page->read_gen != WT_READ_GEN_OLDEST) page->read_gen = __wt_cache_read_gen_set(session); WT_WITH_BTREE(session, btree, ret = __wt_evict_page(session, page)); |