mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Fixed wrong arguments to printf
This commit is contained in:
@@ -1850,7 +1850,7 @@ int TABLE_SHARE::init_from_binary_frm_image(THD *thd, bool write,
|
||||
char tmp[10];
|
||||
if (!csname || csname[0] =='?')
|
||||
{
|
||||
my_snprintf(tmp, sizeof(tmp), "#%d", cs_new);
|
||||
my_snprintf(tmp, sizeof(tmp), "#%u", cs_new);
|
||||
csname= tmp;
|
||||
}
|
||||
my_printf_error(ER_UNKNOWN_COLLATION,
|
||||
|
Reference in New Issue
Block a user