From 048754ff462506f30bc7b3e71a1e7e43370f5ab0 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 16 Jan 2006 15:17:45 +0100 Subject: only use "public" types in plugin API include/plugin.h: only use "public" types in plugin API: s/uint/unsigned int/ or s/uint/int/ s/bool/char/ s/byte/char/ s/CHARSET_INFO */struct charset_info_st */ --- plugin/fulltext/plugin_example.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'plugin') diff --git a/plugin/fulltext/plugin_example.c b/plugin/fulltext/plugin_example.c index 269c58e8b40..84dc58e99a6 100644 --- a/plugin/fulltext/plugin_example.c +++ b/plugin/fulltext/plugin_example.c @@ -13,9 +13,8 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include -#include -#include +#include +#include #include long number_of_calls= 0; /* for SHOW STATUS, see below */ @@ -181,7 +180,7 @@ int simple_parser_parse(MYSQL_FTPARSER_PARAM *param) add_word(param, start, end - start); break; } - else if (my_isspace(param->cs, *end)) + else if (isspace(*end)) { if (end > start) add_word(param, start, end - start); -- cgit v1.2.1