11/* ****************************************************************************
22
33Copyright (c) 1996, 2017, Oracle and/or its affiliates. All Rights Reserved.
4- Copyright (c) 2016, 2017 , MariaDB Corporation.
4+ Copyright (c) 2016, 2018 , MariaDB Corporation.
55
66This program is free software; you can redistribute it and/or modify it under
77the terms of the GNU General Public License as published by the Free Software
@@ -735,7 +735,8 @@ trx_roll_must_shutdown()
735735mutex_enter (&recv_sys->mutex );
736736
737737if (recv_sys->report (time)) {
738- ulint n_trx = 0 , n_rows = 0 ;
738+ ulint n_trx = 0 ;
739+ ulonglong n_rows = 0 ;
739740for (const trx_t * t = UT_LIST_GET_FIRST (trx_sys->rw_trx_list );
740741 t != NULL ;
741742 t = UT_LIST_GET_NEXT (trx_list, t)) {
@@ -749,7 +750,7 @@ trx_roll_must_shutdown()
749750}
750751ib_logf (IB_LOG_LEVEL_INFO,
751752" To roll back: " ULINTPF " transactions, "
752- ULINTPF " rows" , n_trx, n_rows);
753+ " %llu rows" , n_trx, n_rows);
753754}
754755
755756mutex_exit (&recv_sys->mutex );
0 commit comments