branches/zip: buf_page_peek_if_too_old(): Silence a compiler warning

that was introduced in r5779 on 32-bit systems.
This commit is contained in:
marko 2009-09-09 06:00:59 +00:00
parent 3952b42b75
commit 2b85929647

View file

@ -84,7 +84,7 @@ buf_page_peek_if_too_old(
return(FALSE);
} else {
/* FIXME: bpage->freed_page_clock is 31 bits */
return((buf_pool->freed_page_clock & ((1 << 31) - 1))
return((buf_pool->freed_page_clock & ((1UL << 31) - 1))
> bpage->freed_page_clock
+ (buf_pool->curr_size
* (BUF_LRU_OLD_RATIO_DIV - buf_LRU_old_ratio)