From 7c42793a1edc382770de33327ec3684b9f4ac04b Mon Sep 17 00:00:00 2001 From: brain Date: Thu, 4 Sep 2008 10:28:21 +0000 Subject: Fix silly compile errors git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10383 e03df62e-2008-0410-955e-edbf42e46eb7 --- include/threadengines/threadengine_pthread.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/threadengines') diff --git a/include/threadengines/threadengine_pthread.h b/include/threadengines/threadengine_pthread.h index 07bda4598..e3f8b0860 100644 --- a/include/threadengines/threadengine_pthread.h +++ b/include/threadengines/threadengine_pthread.h @@ -57,7 +57,7 @@ class CoreExport ThreadEngineFactory : public classbase class CoreExport PosixMutex : public Mutex { private: - pthread_mutex_t putex + pthread_mutex_t putex; public: PosixMutex(InspIRCd* Instance); virtual void Enable(bool enable); @@ -69,7 +69,7 @@ class CoreExport MutexEngine : public Extensible protected: InspIRCd* ServerInstance; public: - virtual MutexEngine(InspIRCd* Instance); + MutexEngine(InspIRCd* Instance); Mutex* CreateMutex(); }; -- cgit v1.2.3