diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-09-28 13:14:43 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-09-28 13:14:43 -0400 |
commit | 3cc437e862a7c9fb2c839a89bcbddaf129a9f3ff (patch) | |
tree | ab6934ab78a77e429ebcadf8a1a6f66c277c51c6 /indra | |
parent | 2f38ead5ce7ff8ac8eeb77d84483f383b26c50e2 (diff) |
DRTVWR-589: Call lua_pushstdstring() correctly.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llluamanager.cpp | 2 |
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; } } |