diff options
author | Teemu Ollakka <teemu.ollakka@galeracluster.com> | 2017-05-05 10:55:45 +0300 |
---|---|---|
committer | Jan Lindström <jan.lindstrom@mariadb.com> | 2017-07-20 13:56:38 +0300 |
commit | 20ab1665af07080441ecea0734eb78b3aa95e58e (patch) | |
tree | 7c6483238b8a6abb8c0a900d7322853ef597efe3 /storage | |
parent | dbda504275af5eded33f62f509bff0b46e1560e1 (diff) | |
download | mariadb-git-20ab1665af07080441ecea0734eb78b3aa95e58e.tar.gz |
MW-322 Fix compilation error with debug build
Signed-off-by: Jan Lindström <jan.lindstrom@mariadb.com>
Diffstat (limited to 'storage')
-rw-r--r-- | storage/innobase/handler/ha_innodb.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/storage/innobase/handler/ha_innodb.cc b/storage/innobase/handler/ha_innodb.cc index 2f1e3b41c47..97c6cf84910 100644 --- a/storage/innobase/handler/ha_innodb.cc +++ b/storage/innobase/handler/ha_innodb.cc @@ -13033,8 +13033,7 @@ static void wsrep_fake_trx_id( mutex_enter(&kernel_mutex); trx_id_t trx_id = trx_sys_get_new_trx_id(); mutex_exit(&kernel_mutex); - WSREP_DEBUG("innodb fake trx id: %llu thd: %s", - trx_id, wsrep_thd_query(thd)); + WSREP_DEBUG("innodb fake trx id: %llu thd: %s", trx_id, wsrep_thd_query(thd)); (void *)wsrep_ws_handle_for_trx(wsrep_thd_ws_handle(thd), trx_id); } |