diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-09-22 10:31:42 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-09-22 10:31:42 -0400 |
commit | 9227df899fad54efbb14a235cf17bf403fae3823 (patch) | |
tree | 1efa6dee47384d7f6eee6198fb45e9b03126b596 /indra/newview | |
parent | d411240a04dbd111bdc89339a0675c8818ff2578 (diff) |
DRTVWR-589: Existing lua_pushmumble() functions usually return void.
Diffstat (limited to 'indra/newview')
-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 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()) { |