summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lua-plugin.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua-plugin.cc b/src/lua-plugin.cc
index ca15cc8..bf5fc29 100644
--- a/src/lua-plugin.cc
+++ b/src/lua-plugin.cc
@@ -74,7 +74,7 @@ void LuaLoadPlugin(const String & fname, const String & searchpath, Lua * L) thr
Base::printm(M_INFO, "Loading library " + fname + "\n");
if (!handle) {
- full_fname = searchpath + fname + "." SHARED_EXT
+ full_fname = searchpath + fname + "." SHARED_EXT;
handle = dlopen(full_fname.to_charp(), RTLD_NOW | RTLD_GLOBAL);
if (!handle) {
LuaLoadPlugin(&Input(fname + "." SHARED_EXT), L);