diff options
Diffstat (limited to 'plugins/MirLua/src/mlua.cpp')
-rw-r--r-- | plugins/MirLua/src/mlua.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirLua/src/mlua.cpp b/plugins/MirLua/src/mlua.cpp index 253bd2b64e..0e78810fba 100644 --- a/plugins/MirLua/src/mlua.cpp +++ b/plugins/MirLua/src/mlua.cpp @@ -25,7 +25,7 @@ void CMLua::Load() lua_pop(L, 1);
lua_getglobal(L, "_G");
- lua_pushcclosure(L, luaM_print, 0); + lua_pushcclosure(L, luaM_print, 0);
lua_setfield(L, -2, "print");
lua_pop(L, 1);
|