Commit 2fb3a5a7 authored by vasil's avatar vasil

branches/5.1:

Fix a compilation warning caused by c5799:

handler/ha_innodb.cc: In function 'void innobase_get_cset_width(ulint, ulint*, ulint*)':
handler/ha_innodb.cc:830: warning: format '%d' expects type 'int', but argument 2 has type 'ulint'
parent d6784c3d
......@@ -827,7 +827,7 @@ innobase_get_cset_width(
&& (cset != 0)){
sql_print_warning(
"Unknown collation #%d.", cset);
"Unknown collation #%lu.", cset);
}
} else {
......
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