summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src/m_core.cpp
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2016-01-16 19:31:49 +0000
committerAlexander Lantsev <aunsane@gmail.com>2016-01-16 19:31:49 +0000
commit82ae5fccc82f399b9a6ca52d0dc519f849eff9e4 (patch)
tree5cf4e1571b85399c670480ae0ef2aacf5da4ad90 /plugins/MirLua/src/m_core.cpp
parent972ac60e92a1ffc711cb4225232bc6862f421d84 (diff)
MirLua: project cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@16104 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/m_core.cpp')
-rw-r--r--plugins/MirLua/src/m_core.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirLua/src/m_core.cpp b/plugins/MirLua/src/m_core.cpp
index d75f0435a0..e2e34ea717 100644
--- a/plugins/MirLua/src/m_core.cpp
+++ b/plugins/MirLua/src/m_core.cpp
@@ -216,7 +216,7 @@ static int core_Utf8DecodeW(lua_State *L)
static int core_Free(lua_State *L)
{
- if (lua_type(L, 1) == LUA_TLIGHTUSERDATA)
+ if (lua_islightuserdata(L, 1))
{
void *ptr = lua_touserdata(L, 1);
mir_free(ptr);