Skip to content
Permalink
Browse files
Remove a type cast, and use correct format instead
  • Loading branch information
dr-m committed Apr 29, 2019
1 parent bb4f4b3 commit cc359ea
Showing 1 changed file 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;

0 comments on commit cc359ea

Please sign in to comment.