summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorserg@serg.mylan <>2003-10-24 13:23:06 +0200
committerserg@serg.mylan <>2003-10-24 13:23:06 +0200
commitd74ecc079f997221941f6631e1335a837469ed5c (patch)
treee9ecdd8dbbc878379e06e54684d654b1de98d1da
parentad175936ef0b5c0b7af82b1d04dc6992349646a2 (diff)
downloadmariadb-git-d74ecc079f997221941f6631e1335a837469ed5c.tar.gz
style fixes
-rw-r--r--myisam/ft_parser.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/myisam/ft_parser.c b/myisam/ft_parser.c
index 8ab67aa9c6f..0318bcbed10 100644
--- a/myisam/ft_parser.c
+++ b/myisam/ft_parser.c
@@ -145,7 +145,7 @@ byte ft_get_word(CHARSET_INFO *cs, byte **start, byte *end,
byte ft_simple_get_word(CHARSET_INFO *cs, byte **start, byte *end,
FT_WORD *word)
{
- byte *doc=*start;
+ byte *doc= *start;
uint mwc, length;
DBUG_ENTER("ft_simple_get_word");
@@ -156,10 +156,10 @@ byte ft_simple_get_word(CHARSET_INFO *cs, byte **start, byte *end,
if (true_word_char(cs,*doc)) break;
}
- mwc=length=0;
- for(word->pos=doc; doc<end; length++, doc+=my_mbcharlen(cs, *(uchar *)doc))
+ mwc= length= 0;
+ for (word->pos=doc; doc<end; length++, doc+=my_mbcharlen(cs, *(uchar *)doc))
if (true_word_char(cs,*doc))
- mwc=0;
+ mwc= 0;
else if (!misc_word_char(*doc) || mwc++)
break;
@@ -168,7 +168,7 @@ byte ft_simple_get_word(CHARSET_INFO *cs, byte **start, byte *end,
if (length >= ft_min_word_len && length < ft_max_word_len &&
!is_stopword(word->pos, word->len))
{
- *start=doc;
+ *start= doc;
DBUG_RETURN(1);
}
}