Browse Source

Typo

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@1238 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.59
sletz 18 years ago
parent
commit
ffdb93b743
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      windows/JackdmpWIN32.cpp

+ 2
- 2
windows/JackdmpWIN32.cpp View File

@@ -244,7 +244,7 @@ int main(int argc, char* argv[])
// Creates wait event
if ((waitEvent = CreateEvent(NULL, FALSE, FALSE, NULL)) == NULL) {
printf("CreateEvent fails err = %ld", GetLastError());
printf("CreateEvent fails err = %ld\n", GetLastError());
return 0;
}

@@ -405,7 +405,7 @@ int main(int argc, char* argv[])
(void) signal(SIGINT, intrpt);
if ((res = WaitForSingleObject(waitEvent, INFINITE)) != WAIT_OBJECT_0) {
printf("WaitForSingleObject fails err = %ld", GetLastError());
printf("WaitForSingleObject fails err = %ld\n", GetLastError());
}
/*


Loading…
Cancel
Save