Commit 288a5433 authored by Vasil Dimov's avatar Vasil Dimov

(buf0flu.c:136) Bug#55227 Fix compiler warnings in innodb with gcc 4.6

parent ef76f25d
...@@ -133,12 +133,18 @@ buf_flush_delete_from_flush_rbt( ...@@ -133,12 +133,18 @@ buf_flush_delete_from_flush_rbt(
/*============================*/ /*============================*/
buf_page_t* bpage) /*!< in: bpage to be removed. */ buf_page_t* bpage) /*!< in: bpage to be removed. */
{ {
#ifdef UNIV_DEBUG
ibool ret = FALSE; ibool ret = FALSE;
#endif /* UNIV_DEBUG */
buf_pool_t* buf_pool = buf_pool_from_bpage(bpage); buf_pool_t* buf_pool = buf_pool_from_bpage(bpage);
ut_ad(buf_flush_list_mutex_own(buf_pool)); ut_ad(buf_flush_list_mutex_own(buf_pool));
ret = rbt_delete(buf_pool->flush_rbt, &bpage); #ifdef UNIV_DEBUG
ret =
#endif /* UNIV_DEBUG */
rbt_delete(buf_pool->flush_rbt, &bpage);
ut_ad(ret); ut_ad(ret);
} }
......
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