1
0
mirror of https://github.com/moparisthebest/hexchat synced 2024-11-22 09:12:22 -05:00

escaped an unescaped backslash

This commit is contained in:
cremno 2012-07-15 23:42:41 +02:00
parent f78acf5eda
commit 8f4399f900

View File

@ -972,7 +972,7 @@ main (int argc, char *argv[])
{
DWORD error;
mutex = CreateMutex (NULL, TRUE, "Local\hexchat");
mutex = CreateMutex (NULL, TRUE, "Local\\hexchat");
error = GetLastError ();
if (error == ERROR_ALREADY_EXISTS || mutex == NULL)