Browse Source

Cleanup

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@1796 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.70
sletz 17 years ago
parent
commit
bbefd8f44e
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      common/JackSocketServerNotifyChannel.cpp
  2. +1
    -1
      macosx/JackMachServerNotifyChannel.cpp
  3. +1
    -1
      windows/JackWinNamedPipeServerNotifyChannel.cpp

+ 1
- 1
common/JackSocketServerNotifyChannel.cpp View File

@@ -50,7 +50,7 @@ void JackSocketServerNotifyChannel::ClientNotify(int refnum, int notify, int val
{
JackClientNotificationRequest req(refnum, notify, value);
if (req.Write(&fRequestSocket) < 0) {
jack_error("Could not write request type = %ld", req.fType);
jack_error("Could not write request ref = %ld notify = %ld", refnum, notify);
}
}



+ 1
- 1
macosx/JackMachServerNotifyChannel.cpp View File

@@ -48,7 +48,7 @@ void JackMachServerNotifyChannel::ClientNotify(int refnum, int notify, int value
{
kern_return_t res = rpc_jack_client_rt_notify(fClientPort.GetPort(), refnum, notify, value, 0);
if (res != KERN_SUCCESS) {
jack_error("JackMachServerNotifyChannel::ClientNotify: ref = %ld notify = %ld err = %s", refnum, notify, mach_error_string(res));
jack_error("Could not write request ref = %ld notify = %ld err = %s", refnum, notify, mach_error_string(res));
}
}



+ 1
- 1
windows/JackWinNamedPipeServerNotifyChannel.cpp View File

@@ -50,7 +50,7 @@ void JackWinNamedPipeServerNotifyChannel::ClientNotify(int refnum, int notify, i
{
JackClientNotificationRequest req(refnum, notify, value);
if (req.Write(&fRequestPipe) < 0) {
jack_error("Could not write request type = %ld", req.fType);
jack_error("Could not write request ref = %ld notify = %ld", refnum, notify);
}
}



Loading…
Cancel
Save