From 39d569860f331db5dedc00a72155f010bc30e98b Mon Sep 17 00:00:00 2001 From: Michael Widenius Date: Sat, 27 Nov 2010 00:37:34 +0200 Subject: Fixed compiler warnings and a compilation failure on windows extra/libevent/event.c: Tried to fix compiler warning on windows extra/libevent/evutil.h: Define __attribute__ for not gcc compilers extra/libevent/kqueue.c: Fixed compiler warnings extra/libevent/signal.c: Tried to fix compiler warning on windows storage/pbxt/src/ha_pbxt.cc: Fixed compiler warning about "variable might be clobbered by longjmp" storage/pbxt/src/table_xt.cc: Fixed compiler warnings (on windows) storage/xtradb/handler/i_s.cc: Fixed compiler warning by invoking the correct store function. --- storage/xtradb/handler/i_s.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'storage/xtradb/handler') diff --git a/storage/xtradb/handler/i_s.cc b/storage/xtradb/handler/i_s.cc index 07ee7debca7..d90afc6dbc4 100644 --- a/storage/xtradb/handler/i_s.cc +++ b/storage/xtradb/handler/i_s.cc @@ -763,7 +763,7 @@ i_s_innodb_buffer_pool_pages_index_fill( if (fil_page_get_type(frame) == FIL_PAGE_INDEX) { index_id = btr_page_get_index_id(frame); - table->field[0]->store(ut_conv_dulint_to_longlong(index_id)); + table->field[0]->store(ut_conv_dulint_to_longlong(index_id), 0); table->field[1]->store(block->page.space); table->field[2]->store(block->page.offset); table->field[3]->store(page_get_n_recs(frame)); -- cgit v1.2.1