Commit 62807cb0 authored by Yoni Fogel's avatar Yoni Fogel

Addresses #1308

Fix suspiscious cast in range tree hash table

git-svn-id: file:///svn/toku/tokudb.1032b@8294 c7de825b-a66e-492c-adef-691d508d4ae1
parent f9868077
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
const u_int32_t __toku_rth_init_size = 521; const u_int32_t __toku_rth_init_size = 521;
static inline u_int32_t toku__rth_hash(toku_rth* rth, TXNID key) { static inline u_int32_t toku__rth_hash(toku_rth* rth, TXNID key) {
size_t tmp = (size_t)key; u_int64_t tmp = (u_int64_t)key;
return tmp % rth->num_buckets; return tmp % rth->num_buckets;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment