summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2023-09-22 10:31:42 -0400
committerNat Goodspeed <nat@lindenlab.com>2023-09-22 10:31:42 -0400
commit9227df899fad54efbb14a235cf17bf403fae3823 (patch)
tree1efa6dee47384d7f6eee6198fb45e9b03126b596 /indra/newview
parentd411240a04dbd111bdc89339a0675c8818ff2578 (diff)
DRTVWR-589: Existing lua_pushmumble() functions usually return void.
Diffstat (limited to 'indra/newview')
-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 9e46982b10..cbce4090af 100644
--- a/indra/newview/llluamanager.cpp
+++ b/indra/newview/llluamanager.cpp
@@ -684,7 +684,7 @@ LLSD lua_tollsd(lua_State* L, int index)
// By analogy with existing lua_pushmumble() functions, push onto state L's
// stack a Lua object corresponding to the passed LLSD object.
-int lua_pushllsd(lua_State* L, const LLSD& data)
+void lua_pushllsd(lua_State* L, const LLSD& data)
{
switch (data.type())
{