mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Remove compiler warnings
Fixed wrong table flags type in ndbcluster that caused previous commit to fail
This commit is contained in:
@ -97,7 +97,8 @@ static int simple_parser_plugin_deinit(void)
|
||||
1 failure (cannot happen)
|
||||
*/
|
||||
|
||||
static int simple_parser_init(MYSQL_FTPARSER_PARAM *param)
|
||||
static int simple_parser_init(MYSQL_FTPARSER_PARAM *param
|
||||
__attribute__((unused)))
|
||||
{
|
||||
return(0);
|
||||
}
|
||||
@ -117,7 +118,8 @@ static int simple_parser_init(MYSQL_FTPARSER_PARAM *param)
|
||||
1 failure (cannot happen)
|
||||
*/
|
||||
|
||||
static int simple_parser_deinit(MYSQL_FTPARSER_PARAM *param)
|
||||
static int simple_parser_deinit(MYSQL_FTPARSER_PARAM *param
|
||||
__attribute__((unused)))
|
||||
{
|
||||
return(0);
|
||||
}
|
||||
|
Reference in New Issue
Block a user