summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2023-09-28 13:14:43 -0400
committerNat Goodspeed <nat@lindenlab.com>2023-09-28 13:14:43 -0400
commit3cc437e862a7c9fb2c839a89bcbddaf129a9f3ff (patch)
treeab6934ab78a77e429ebcadf8a1a6f66c277c51c6 /indra
parent2f38ead5ce7ff8ac8eeb77d84483f383b26c50e2 (diff)
DRTVWR-589: Call lua_pushstdstring() correctly.
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llluamanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llluamanager.cpp b/indra/newview/llluamanager.cpp
index a105eebf67..bf04f6a079 100644
--- a/indra/newview/llluamanager.cpp
+++ b/indra/newview/llluamanager.cpp
@@ -1195,7 +1195,7 @@ void lua_pushllsd(lua_State* L, const LLSD& data)
case LLSD::TypeURI:
default:
{
- lua_pushstdstring(data.asString());
+ lua_pushstdstring(L, data.asString());
break;
}
}