summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorcallum_linden <none@none>2014-10-17 22:15:36 -0700
committercallum_linden <none@none>2014-10-17 22:15:36 -0700
commit955ec6faff27d566cb0d07cecd159756de5b355e (patch)
tree4ee58e63b12170c29a19c8915962b4c55ee4a442 /indra
parentff5c13493e63509443a7a1fca189d3ddf1d4cb34 (diff)
Update to build on Xcode 6.0: clang fix for bracketed logical operations
Diffstat (limited to 'indra')
-rwxr-xr-xindra/llui/lltextvalidate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/lltextvalidate.cpp b/indra/llui/lltextvalidate.cpp
index 234e600ccd..324ceb7fba 100755
--- a/indra/llui/lltextvalidate.cpp
+++ b/indra/llui/lltextvalidate.cpp
@@ -336,7 +336,7 @@ namespace LLTextValidate
S32 len = str.length();
while(len--)
{
- if (str[len] < 0x20 && str[len] != 0xA || str[len] > 0x7f)
+ if ((str[len] < 0x20 && str[len] != 0xA) || str[len] > 0x7f)
{
rv = FALSE;
break;