summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src/mlua_metatable.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/MirLua/src/mlua_metatable.h')
-rw-r--r--plugins/MirLua/src/mlua_metatable.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirLua/src/mlua_metatable.h b/plugins/MirLua/src/mlua_metatable.h
index f2143d5f27..df42f2dca9 100644
--- a/plugins/MirLua/src/mlua_metatable.h
+++ b/plugins/MirLua/src/mlua_metatable.h
@@ -101,7 +101,7 @@ private:
static int lua__gc(lua_State *L)
{
- T* obj = (T*)luaL_checkudata(L, 1, MT::name);
+ T *obj = (T*)luaL_checkudata(L, 1, MT::name);
MT::Free(&obj);
return 0;
}