1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

plugin maturity is unsigned

This commit is contained in:
Sergei Golubchik
2010-06-15 21:12:13 +02:00
parent feebb064d6
commit fc241c1ace
2 changed files with 2 additions and 2 deletions

View File

@@ -455,7 +455,7 @@ struct st_maria_plugin
struct st_mysql_show_var *status_vars;
struct st_mysql_sys_var **system_vars;
const char *version_info; /* plugin version string */
int maturity; /* MariaDB_PLUGIN_MATURITY_XXX */
unsigned int maturity; /* MariaDB_PLUGIN_MATURITY_XXX */
};
/*************************************************************************

View File

@@ -91,7 +91,7 @@ struct st_maria_plugin
struct st_mysql_show_var *status_vars;
struct st_mysql_sys_var **system_vars;
const char *version_info;
int maturity;
unsigned int maturity;
};
enum enum_ftparser_mode
{