Commit ff7a1ff6 authored by Sergei Golubchik's avatar Sergei Golubchik

fix printf format string

parent 8036ad0a
...@@ -218,7 +218,7 @@ init_crypt_key( ...@@ -218,7 +218,7 @@ init_crypt_key(
ib_logf(IB_LOG_LEVEL_ERROR, ib_logf(IB_LOG_LEVEL_ERROR,
"Redo log crypto: getting mysqld crypto key " "Redo log crypto: getting mysqld crypto key "
"from key version failed. Reason could be that requested" "from key version failed. Reason could be that requested"
" key_version %lu is not found or required encryption " " key_version %u is not found or required encryption "
" key management is not found.", info->key_version); " key management is not found.", info->key_version);
return false; return false;
} }
......
...@@ -218,7 +218,7 @@ init_crypt_key( ...@@ -218,7 +218,7 @@ init_crypt_key(
ib_logf(IB_LOG_LEVEL_ERROR, ib_logf(IB_LOG_LEVEL_ERROR,
"Redo log crypto: getting mysqld crypto key " "Redo log crypto: getting mysqld crypto key "
"from key version failed. Reason could be that requested" "from key version failed. Reason could be that requested"
" key_version %lu is not found or required encryption " " key_version %u is not found or required encryption "
" key management is not found.", info->key_version); " key management is not found.", info->key_version);
return false; return false;
} }
......
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