summaryrefslogtreecommitdiff
path: root/plugin/fulltext/plugin_example.c
diff options
context:
space:
mode:
authorunknown <monty@mysql.com>2006-06-23 02:49:19 +0300
committerunknown <monty@mysql.com>2006-06-23 02:49:19 +0300
commite03f8ef25aa521dd698f185d4500e5eaab5766cb (patch)
tree58ab5561c26c742cf51ff01378a1d269f85b5637 /plugin/fulltext/plugin_example.c
parentb58e990c748d77637f127a819b41f440e60e1d7d (diff)
downloadmariadb-git-e03f8ef25aa521dd698f185d4500e5eaab5766cb.tar.gz
Remove compiler warnings
Fixed wrong table flags type in ndbcluster that caused previous commit to fail client/mysqltest.c: Portability fix mysys/my_bitmap.c: Remove compiler warning mysys/my_handler.c: Remove compiler warning mysys/thr_lock.c: Remove compiler warning plugin/fulltext/plugin_example.c: Remove compiler warning sql/ha_ndbcluster.h: Fixed wrong of handler flags (caused previous commit to fail) sql/ha_ndbcluster_binlog.cc: Remove compiler warning sql/handler.cc: Indentation cleanups sql/mysql_priv.h: Changed log_output_options to ulong to remove compiler warning (and wrong test on 64 bit machines) sql/mysqld.cc: Changed log_output_options to ulong to remove compiler warning (and wrong test on 64 bit machines) Split initialization of variables of different types to remove compiler warning sql/set_var.cc: Fixed indentation sql/set_var.h: sys_var_log_output now takes a pointer to ulong storage/archive/archive_test.c: Remove compiler warning
Diffstat (limited to 'plugin/fulltext/plugin_example.c')
-rw-r--r--plugin/fulltext/plugin_example.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/plugin/fulltext/plugin_example.c b/plugin/fulltext/plugin_example.c
index eefb10bd26b..beb02128774 100644
--- a/plugin/fulltext/plugin_example.c
+++ b/plugin/fulltext/plugin_example.c
@@ -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);
}