summaryrefslogtreecommitdiff
path: root/include/threadengines
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2009-03-25 11:37:06 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2009-03-25 11:37:06 +0000
commit9b6337bec9b8adfcb1746c76be752334869ac997 (patch)
tree4abd1175f5d47205166e7827a6ce81c99037df66 /include/threadengines
parenta4e0a1127a7db3e08399bfb1efffb14588323743 (diff)
start of fix for bug #805
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11260 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/threadengines')
-rw-r--r--include/threadengines/threadengine_win32.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/threadengines/threadengine_win32.h b/include/threadengines/threadengine_win32.h
index 0fc9b27bc..6bd1c2c00 100644
--- a/include/threadengines/threadengine_win32.h
+++ b/include/threadengines/threadengine_win32.h
@@ -77,7 +77,7 @@ class CoreExport Mutex
private:
CRITICAL_SECTION wutex;
public:
- Win32Mutex()
+ Mutex()
{
InitializeCriticalSection(&wutex);
}
@@ -89,7 +89,7 @@ class CoreExport Mutex
{
LeaveCriticalSection(&wutex);
}
- ~Win32Mutex()
+ ~Mutex()
{
DeleteCriticalSection(&wutex);
}