diff options
Diffstat (limited to 'src/modules/m_setident.cpp')
-rw-r--r-- | src/modules/m_setident.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_setident.cpp b/src/modules/m_setident.cpp index a56aec0d1..f46c7112c 100644 --- a/src/modules/m_setident.cpp +++ b/src/modules/m_setident.cpp @@ -58,7 +58,7 @@ class ModuleSetIdent : public Module cmd_setident* mycommand; public: - ModuleSetIdent(InspIRCd* Me) : Module::Module(Me) + ModuleSetIdent(InspIRCd* Me) : Module(Me) { mycommand = new cmd_setident(ServerInstance); @@ -97,7 +97,7 @@ class ModuleSetIdentFactory : public ModuleFactory }; -extern "C" void * init_module( void ) +extern "C" DllExport void * init_module( void ) { return new ModuleSetIdentFactory; } |