Browse Source

Typo

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@1700 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.68
sletz 17 years ago
parent
commit
4c05a1a8d2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      windows/JackWinSemaphore.cpp

+ 1
- 1
windows/JackWinSemaphore.cpp View File

@@ -128,7 +128,7 @@ bool JackWinSemaphore::Allocate(const char* name, const char* server_name, int v
JackLog("JackWinSemaphore::Allocate name = %s val = %ld\n", fName, value);

if ((fSemaphore = CreateSemaphore(NULL, value, 32767, fName)) == NULL) {
jack_error("Allocate: can't check in named event name = %s err = %ld", fName, GetLastError());
jack_error("Allocate: can't check in named semaphore name = %s err = %ld", fName, GetLastError());
return false;
} else if (GetLastError() == ERROR_ALREADY_EXISTS) {
jack_error("Allocate: named semaphore already exist name = %s", fName);


Loading…
Cancel
Save