1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Fixed some compiler warnings

This commit is contained in:
Michael Widenius
2017-06-20 18:30:00 +03:00
committed by Sergei Golubchik
parent f71bed08ca
commit 9e1cc831f2
6 changed files with 12 additions and 7 deletions

View File

@ -1945,7 +1945,7 @@ static bool abort_replicated(THD *thd)
bool ret_code= false;
if (thd->wsrep_query_state== QUERY_COMMITTING)
{
WSREP_DEBUG("aborting replicated trx: %lu", thd->real_id);
WSREP_DEBUG("aborting replicated trx: %lu", (ulong) thd->real_id);
(void)wsrep_abort_thd(thd, thd, TRUE);
ret_code= true;