Browse Source

Cleanup.

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@3786 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/v1.9.4
sletz 16 years ago
parent
commit
5dc57dd090
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      macosx/JackMachServerNotifyChannel.cpp
  2. +1
    -1
      posix/JackSocketServerNotifyChannel.cpp
  3. +1
    -1
      windows/JackWinNamedPipeServerNotifyChannel.cpp

+ 1
- 1
macosx/JackMachServerNotifyChannel.cpp View File

@@ -50,7 +50,7 @@ void JackMachServerNotifyChannel::Notify(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("Could not write request ref = %ld notify = %ld err = %s", refnum, notify, mach_error_string(res));
jack_error("Could not write request ref = %d notify = %d err = %s", refnum, notify, mach_error_string(res));
}
}



+ 1
- 1
posix/JackSocketServerNotifyChannel.cpp View File

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



+ 1
- 1
windows/JackWinNamedPipeServerNotifyChannel.cpp View File

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



Loading…
Cancel
Save