mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 02:47:37 +02:00
Fix wrong printf() format.
This commit is contained in:
parent
4c800623c5
commit
2cbfdfc210
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue