From: Mats Kindahl Date: March 28 2008 6:57pm Subject: bk commit into 5.1 tree (mats:1.2589) List-Archive: http://lists.mysql.com/commits/44617 Message-Id: <20080328185745.148985C0BF@mats-laptop> Below is the list of changes that have just been committed into a local 5.1 repository of mats. When mats does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet@stripped, 2008-03-28 19:57:39+01:00, mats@mats-laptop.(none) +1 -0 Fixes to eliminate compiler warnings. sql/log.cc@stripped, 2008-03-28 19:57:38+01:00, mats@mats-laptop.(none) +1 -1 Reordering initialalizer list to eliminate compiler warnings. diff -Nrup a/sql/log.cc b/sql/log.cc --- a/sql/log.cc 2008-03-28 14:52:30 +01:00 +++ b/sql/log.cc 2008-03-28 19:57:38 +01:00 @@ -153,7 +153,7 @@ private: class binlog_trx_data { public: binlog_trx_data() - : m_pending(0), before_stmt_pos(MY_OFF_T_UNDEF), at_least_one_stmt(0) + : at_least_one_stmt(0), m_pending(0), before_stmt_pos(MY_OFF_T_UNDEF) { trans_log.end_of_file= max_binlog_cache_size; }