summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2010-08-14 03:13:11 +0200
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2010-08-14 03:13:11 +0200
commitafe461dee89253fbe48fd38c595086730cb707d1 (patch)
treed630689632998aad9901b73098614e227cf808cc
parent6e7c6761ce3ed20759572d623b2c961da8b49f73 (diff)
Typo, of course...
-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);