diff options
-rw-r--r-- | include/dynamic.h | 2 | ||||
-rw-r--r-- | src/modules/m_devoice.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/dynamic.h b/include/dynamic.h index 98deaf761..937005e11 100644 --- a/include/dynamic.h +++ b/include/dynamic.h @@ -67,7 +67,7 @@ template <class T> class DLLFactory : public DLLFactoryBase public: DLLFactory(const char *fname, const char *func_name=0) : DLLFactoryBase(fname,func_name) { - if (!err && factory_func) + if (factory_func) factory = (T*)factory_func(); else factory = 0; diff --git a/src/modules/m_devoice.cpp b/src/modules/m_devoice.cpp index 713dc2788..346132eaa 100644 --- a/src/modules/m_devoice.cpp +++ b/src/modules/m_devoice.cpp @@ -100,7 +100,7 @@ class ModuleDeVoiceFactory : public ModuleFactory }; -extern "C" void * crud_u_like( void ) +extern "C" void * init_module( void ) { return new ModuleDeVoiceFactory; } |