summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsletz <sletz@0c269be4-1314-0410-8aa9-9f06e86f4224>2009-11-13 18:22:52 +0000
committersletz <sletz@0c269be4-1314-0410-8aa9-9f06e86f4224>2009-11-13 18:22:52 +0000
commit5dc57dd09073435722c45b1e35dfcc0bf9ad74aa (patch)
tree980bc34ca4a03fb1841d5188e42e2d764e01db28
parentca2532315d6f9080c1fa7877d66d61fd87c5b978 (diff)
downloadjack2-5dc57dd09073435722c45b1e35dfcc0bf9ad74aa.tar.gz
Cleanup.
git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@3786 0c269be4-1314-0410-8aa9-9f06e86f4224
-rw-r--r--macosx/JackMachServerNotifyChannel.cpp2
-rw-r--r--posix/JackSocketServerNotifyChannel.cpp2
-rw-r--r--windows/JackWinNamedPipeServerNotifyChannel.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/macosx/JackMachServerNotifyChannel.cpp b/macosx/JackMachServerNotifyChannel.cpp
index ab686c57..2e1c9abe 100644
--- a/macosx/JackMachServerNotifyChannel.cpp
+++ b/macosx/JackMachServerNotifyChannel.cpp
@@ -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));
}
}
diff --git a/posix/JackSocketServerNotifyChannel.cpp b/posix/JackSocketServerNotifyChannel.cpp
index b147fe06..c4e4888a 100644
--- a/posix/JackSocketServerNotifyChannel.cpp
+++ b/posix/JackSocketServerNotifyChannel.cpp
@@ -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);
}
}
diff --git a/windows/JackWinNamedPipeServerNotifyChannel.cpp b/windows/JackWinNamedPipeServerNotifyChannel.cpp
index 7f2f14cf..1e3c4e21 100644
--- a/windows/JackWinNamedPipeServerNotifyChannel.cpp
+++ b/windows/JackWinNamedPipeServerNotifyChannel.cpp
@@ -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);
}
}