Commit cc359eae authored by Marko Mäkelä's avatar Marko Mäkelä

Remove a type cast, and use correct format instead

parent bb4f4b3a
......@@ -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;
......
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