diff options
author | Keith Bostic <keith@wiredtiger.com> | 2012-11-23 17:59:43 +0000 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2012-11-23 17:59:43 +0000 |
commit | 2bfcc4621bd595ed48f6d15361d486707465cf39 (patch) | |
tree | 840d0593ac6ce6099a5d8f95e122fd37f2062fac | |
parent | 2b9cdc0969b3806862caa7e04e2e3862acea3eff (diff) | |
download | mongo-2bfcc4621bd595ed48f6d15361d486707465cf39.tar.gz |
signed/unsigned lint.
-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 350ad08a22b..a5e8474ef8a 100644 --- a/src/btree/bt_evict.c +++ b/src/btree/bt_evict.c @@ -739,7 +739,7 @@ __evict_get_page( WT_CACHE *cache; WT_EVICT_ENTRY *evict; WT_REF *ref; - int candidates; + uint32_t candidates; cache = S2C(session)->cache; *btreep = NULL; |