summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2015-06-21 21:39:03 +0000
committerGeorge Hazan <george.hazan@gmail.com>2015-06-21 21:39:03 +0000
commit3a0c7938465596cc6e3bf7938344fe72466a5d1a (patch)
tree11763c2383679bf0141dedd1fa078a357420afc1 /plugins
parent939b95abc8f35bb5e44cc9fada19066375bee83b (diff)
compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@14314 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 5e720dba8e..bf83c8f2c0 100644
--- a/plugins/MirLua/src/mlua.cpp
+++ b/plugins/MirLua/src/mlua.cpp
@@ -24,7 +24,8 @@ void CMLua::Load()
LoadMirandaModules();
- hScriptsLangpack = GetPluginLangId(MIID_LAST, 0);
+ MUUID last = MIID_LAST;
+ hScriptsLangpack = GetPluginLangId(last, 0);
CLuaLoader loader(this);
loader.LoadScripts();