1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +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

@ -1288,7 +1288,8 @@ bool do_command(THD *thd)
mysql_mutex_lock(&thd->LOCK_wsrep_thd);
if (thd->wsrep_conflict_state == MUST_ABORT)
{
DBUG_PRINT("wsrep",("aborted for wsrep rollback: %lu", thd->real_id));
DBUG_PRINT("wsrep",("aborted for wsrep rollback: %lu",
(ulong) thd->real_id));
wsrep_client_rollback(thd);
}
mysql_mutex_unlock(&thd->LOCK_wsrep_thd);