diff options
author | jcole@ham.spaceapes.com <> | 2000-08-30 03:05:13 +0000 |
---|---|---|
committer | jcole@ham.spaceapes.com <> | 2000-08-30 03:05:13 +0000 |
commit | 88e811a1e0199d29161c3148c3f48062f1e5c663 (patch) | |
tree | f620b529658627cc03b59079025ea123345055f5 /myisam/ft_stopwords.c | |
parent | 9edef9af3b7f03f937e77166ad50ab80cb5600eb (diff) | |
parent | ce40c2fd83976f7eb6f8ad2ceacc799eb1e0ec28 (diff) | |
download | mariadb-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.c | 2 |
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); |