Commit 15ab7817 authored by unknown's avatar unknown

Fix wrong printf() format.

parent acd695d8
......@@ -3024,7 +3024,8 @@ innobase_rollback(
if (innobase_release_locks_early && trx->conc_state == TRX_PREPARED
&& UT_LIST_GET_LEN(trx->trx_locks) == 0) {
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;
}
......
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