summaryrefslogtreecommitdiff
path: root/myisam/ft_stopwords.c
diff options
context:
space:
mode:
authormonty@donna.mysql.com <>2000-08-29 12:31:01 +0300
committermonty@donna.mysql.com <>2000-08-29 12:31:01 +0300
commit066d55c0c09d589d17bf466682134af50cb59e14 (patch)
tree8c9e3c031400ac400edcf6561fe51f4bdbd69369 /myisam/ft_stopwords.c
parentd564acf14eb07cefedf0218c90fd109c61dc6e2f (diff)
downloadmariadb-git-066d55c0c09d589d17bf466682134af50cb59e14.tar.gz
Bug fixes for 3.23.23
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);