From bf98464d2ddfb683bc729e9199e241933c9ba929 Mon Sep 17 00:00:00 2001 From: Berke Viktor Date: Sun, 15 Jul 2012 12:29:17 +0200 Subject: [PATCH] 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) --- src/common/xchat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)