summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2015-06-22 12:04:20 +0000
committerGeorge Hazan <george.hazan@gmail.com>2015-06-22 12:04:20 +0000
commit28a3f4e95a93f30155c68aa87198595ca9e100b5 (patch)
treeb7d1fd4a0b7a5769e91e7d87442be4034a25efba /plugins
parentbce6b9a259dc9c214a56733424be8f2bbd3ecc04 (diff)
compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@14323 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r--plugins/MirLua/src/mlua.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/MirLua/src/mlua.cpp b/plugins/MirLua/src/mlua.cpp
index ccd843d5be..e76731e11b 100644
--- a/plugins/MirLua/src/mlua.cpp
+++ b/plugins/MirLua/src/mlua.cpp
@@ -22,7 +22,8 @@ void CMLua::Load()
lua_setfield(L, -2, "cpath");
lua_pop(L, 1);
- hScriptsLangpack = GetPluginLangId(MIID_LAST, 0);
+ MUUID muidLast = MIID_LAST;
+ hScriptsLangpack = GetPluginLangId(muidLast, 0);
CLuaModuleLoader::Load(L);
CLuaScriptLoader::Load(L);