diff options
-rw-r--r-- | src/lua-plugin.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lua-plugin.cc b/src/lua-plugin.cc index 92b379b..817c35b 100644 --- a/src/lua-plugin.cc +++ b/src/lua-plugin.cc @@ -9,7 +9,7 @@ void LuaLoadPlugin(const String & _fname, Lua * L) throw (GeneralException) { HMODULE handle; String fname = _fname + ".dll"; - printm(M_INFO, "Loading library " + fname + "\n"); + Base::printm(M_INFO, "Loading library " + fname + "\n"); if (!(handle = LoadLibraryEx(fname.to_charp(), NULL, LOAD_WITH_ALTERED_SEARCH_PATH)) && !(handle = LoadLibraryEx(fname.to_charp(), NULL, NULL))) { @@ -22,7 +22,7 @@ void LuaLoadPlugin(const String & _fname, Lua * L) throw (GeneralException) { throw GeneralException("No init pointer on plugin " + fname); } - printm(M_INFO, "Library loaded, init ptr = %p\n", init_ptr); + Base::printm(M_INFO, "Library loaded, init ptr = %p\n", init_ptr); init_ptr(L); } @@ -32,7 +32,7 @@ void LuaLoadPlugin(const String & _fname, Lua * L) throw (GeneralException) { void LuaLoadPlugin(const String & fname, Lua * L) throw (GeneralException) { void * handle = dlopen(("./" + fname + ".so").to_charp(), RTLD_NOW | RTLD_GLOBAL); - printm(M_INFO, "Loading library " + fname + "\n"); + Base::printm(M_INFO, "Loading library " + fname + "\n"); if (!handle) { throw GeneralException("File not found or error loading shared object file: " + fname + "; " + dlerror()); @@ -44,7 +44,7 @@ void LuaLoadPlugin(const String & fname, Lua * L) throw (GeneralException) { throw GeneralException("No init pointer on plugin " + fname); } - printm(M_INFO, "Library loaded, init ptr = %p\n", init_ptr); + Base::printm(M_INFO, "Library loaded, init ptr = %p\n", init_ptr); init_ptr(L); } |