summary refs log tree commit diff stats
path: root/src/common/xchat.c
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-07-15 12:29:17 +0200
committerBerke Viktor <bviktor@hexchat.org>2012-07-15 12:29:17 +0200
commitbf98464d2ddfb683bc729e9199e241933c9ba929 (patch)
tree2e582dee8774088b46fbc5164057d0ea75bc40f0 /src/common/xchat.c
parentb20e8feca290faafad4193580e63304921edddfc (diff)
Windows doesn't seem to like the hexchat mutex, stops working after some time, let's use the old, working one (might be a Win8 bug though)
Diffstat (limited to 'src/common/xchat.c')
-rw-r--r--src/common/xchat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/xchat.c b/src/common/xchat.c
index da33edbe..214cc623 100644
--- a/src/common/xchat.c
+++ b/src/common/xchat.c
@@ -972,7 +972,7 @@ main (int argc, char *argv[])
 	{
 		DWORD error;
 
-		mutex = CreateMutex (NULL, TRUE, "Local\hexchat");
+		mutex = CreateMutex (NULL, TRUE, "Local\xchat");
 		error = GetLastError ();
 
 		if (error == ERROR_ALREADY_EXISTS || mutex == NULL)