diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-09-26 14:53:20 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-09-26 14:53:20 -0400 |
commit | da8a79f2a2d4a3b35762fbc77f2b69852db3af5d (patch) | |
tree | b3478ef907cc4f4707e7a2dc63528b17430ba356 /indra/newview | |
parent | 0d5f5f6380a7087f86c5fcd7c761ea5a175c3f17 (diff) |
DRTVWR-589: Fix typo due to old documentation.
The function formerly known as luaL_typerror() is now luaL_typeerror().
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 f94b26f32e..c783b1fab6 100644 --- a/indra/newview/llluamanager.cpp +++ b/indra/newview/llluamanager.cpp @@ -482,7 +482,7 @@ lua_function(listen_events) { if (! lua_isfunction(L, -1)) { - return luaL_typerror(L, 1, "function"); + return luaL_typeerror(L, 1, "function"); } // return the distinct LLEventPump name so Lua code can post that with a // request as the reply pump |