Commit cb4737cb authored by Monty's avatar Monty

Fixed compiler warning

parent 7cd2095c
...@@ -48,7 +48,8 @@ static int validate(MYSQL_LEX_STRING *username, MYSQL_LEX_STRING *password) ...@@ -48,7 +48,8 @@ static int validate(MYSQL_LEX_STRING *username, MYSQL_LEX_STRING *password)
others < min_others; others < min_others;
} }
static void fix_min_length(MYSQL_THD thd, struct st_mysql_sys_var *var, static void fix_min_length(MYSQL_THD thd __attribute__((unused)),
struct st_mysql_sys_var *var,
void *var_ptr, const void *save) void *var_ptr, const void *save)
{ {
*((unsigned int *)var_ptr)= *((unsigned int *)save); *((unsigned int *)var_ptr)= *((unsigned int *)save);
......
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