summaryrefslogtreecommitdiff
path: root/indra/llxml
diff options
context:
space:
mode:
authorLars Næsbye Christensen <lars@naesbye.dk>2024-02-10 22:37:52 +0100
committerAndrey Lihatskiy <alihatskiy@productengine.com>2024-02-12 23:17:22 +0200
commit70f8dc7a4f4be217fea5439e474fc75e567c23c5 (patch)
treea55dacb2ea41b1fcc43b0bf193e8b6846abb0630 /indra/llxml
parent04a02e83e9dcc29d4649e8003d523621b5119d7b (diff)
miscellaneous: BOOL (int) to real bool
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;
}