diff options
Diffstat (limited to 'myisam/ft_parser.c')
-rw-r--r-- | myisam/ft_parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/myisam/ft_parser.c b/myisam/ft_parser.c index e2fcd2b00a1..588f5831dce 100644 --- a/myisam/ft_parser.c +++ b/myisam/ft_parser.c @@ -140,7 +140,7 @@ TREE * ft_parse(TREE *wtree, byte *doc, int doclen) if(word_char(*doc)) break; for(w.pos=doc; doc<end; doc++) if(!word_char(*doc)) break; - if((w.len=doc-w.pos) < MIN_WORD_LEN) continue; + if((w.len= (uint) (doc-w.pos)) < MIN_WORD_LEN) continue; if(!tree_insert(wtree, &w, 0)) { delete_tree(wtree); |