summaryrefslogtreecommitdiff
path: root/myisam/ft_stopwords.c
diff options
context:
space:
mode:
authorjcole@ham.spaceapes.com <>2000-08-30 03:05:13 +0000
committerjcole@ham.spaceapes.com <>2000-08-30 03:05:13 +0000
commit88e811a1e0199d29161c3148c3f48062f1e5c663 (patch)
treef620b529658627cc03b59079025ea123345055f5 /myisam/ft_stopwords.c
parent9edef9af3b7f03f937e77166ad50ab80cb5600eb (diff)
parentce40c2fd83976f7eb6f8ad2ceacc799eb1e0ec28 (diff)
downloadmariadb-git-88e811a1e0199d29161c3148c3f48062f1e5c663.tar.gz
Merge jcole@work.mysql.com:/home/bk/mysql
into ham.spaceapes.com:/usr/home/jcole/bk/mysql
Diffstat (limited to 'myisam/ft_stopwords.c')
-rw-r--r--myisam/ft_stopwords.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/myisam/ft_stopwords.c b/myisam/ft_stopwords.c
index f8fddc9d4bb..4c13a845b42 100644
--- a/myisam/ft_stopwords.c
+++ b/myisam/ft_stopwords.c
@@ -48,7 +48,7 @@ int ft_init_stopwords(const char **sws)
for(;*sws;sws++)
{
- if( (sw.len=strlen(sw.pos=*sws)) < MIN_WORD_LEN) continue;
+ if( (sw.len= (uint) strlen(sw.pos=*sws)) < MIN_WORD_LEN) continue;
if(!tree_insert(stopwords3, &sw, 0))
{
delete_tree(stopwords3);