summaryrefslogtreecommitdiff
path: root/indra/llxml
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llxml')
-rw-r--r--indra/llxml/llcontrol.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llxml/llcontrol.cpp b/indra/llxml/llcontrol.cpp
index b53d573bae..1abf6832fb 100644
--- a/indra/llxml/llcontrol.cpp
+++ b/indra/llxml/llcontrol.cpp
@@ -179,7 +179,7 @@ LLSD LLControlVariable::getComparableValue(const LLSD& value)
if(TYPE_BOOLEAN == type() && value.isString())
{
BOOL temp;
- if(LLStringUtil::convertToBOOL(value.asString(), temp))
+ if(LLStringUtil::convertToBOOL(value.asString(), temp))
{
storable_value = (bool)temp;
}