Commit 2cbfdfc2 authored by unknown's avatar unknown

Fix wrong printf() format.

parent 4c800623
...@@ -3024,7 +3024,8 @@ innobase_rollback( ...@@ -3024,7 +3024,8 @@ innobase_rollback(
if (innobase_release_locks_early && trx->conc_state == TRX_PREPARED if (innobase_release_locks_early && trx->conc_state == TRX_PREPARED
&& UT_LIST_GET_LEN(trx->trx_locks) == 0) { && UT_LIST_GET_LEN(trx->trx_locks) == 0) {
sql_print_error("Rollback after releasing locks! " sql_print_error("Rollback after releasing locks! "
"errno=%d, dberr=%d", errno, trx->error_state); "errno=%d, dberr="ULINTPF,
errno, trx->error_state);
ut_error; ut_error;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment