mirror of
https://github.com/MariaDB/server.git
synced 2026-05-06 23:25:34 +02:00
Remove a type cast, and use correct format instead
This commit is contained in:
parent
bb4f4b3a1b
commit
cc359eae3b
1 changed files with 2 additions and 2 deletions
|
|
@ -2659,8 +2659,8 @@ static int check_users(void *save, struct st_mysql_value *value,
|
|||
{
|
||||
error_header();
|
||||
fprintf(stderr,
|
||||
"server_audit_%s_users value can't be longer than %ld characters.\n",
|
||||
name, (long int) s);
|
||||
"server_audit_%s_users value can't be longer than %zu characters.\n",
|
||||
name, s);
|
||||
return 1;
|
||||
}
|
||||
*((const char**)save)= users;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue