aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--linden/indra/llui/lllineeditor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/llui/lllineeditor.cpp b/linden/indra/llui/lllineeditor.cpp
index 49fe3be..b3da7fd 100644
--- a/linden/indra/llui/lllineeditor.cpp
+++ b/linden/indra/llui/lllineeditor.cpp
@@ -1198,7 +1198,7 @@ BOOL LLLineEditor::getWordBoundriesAt(const S32 at, S32* word_begin, S32* word_l
1198 pos--; 1198 pos--;
1199 } 1199 }
1200 *word_begin = pos; 1200 *word_begin = pos;
1201 while ( (pos < wtext.length()) && LLTextEditor::isPartOfWord(wtext[pos]) ) 1201 while ( (pos < (S32)wtext.length()) && LLTextEditor::isPartOfWord(wtext[pos]) )
1202 { 1202 {
1203 pos++; 1203 pos++;
1204 } 1204 }