summaryrefslogtreecommitdiff
path: root/windows
diff options
context:
space:
mode:
authorNedko Arnaudov <nedko@arnaudov.name>2011-08-07 05:17:16 +0300
committerNedko Arnaudov <nedko@arnaudov.name>2011-08-07 05:17:16 +0300
commitd9064f5866f011cafb297873cc107db86b414238 (patch)
tree84085124efc4a9b9afb6bc2d611a07dea9473bb0 /windows
parent1e962ef0797bdc56e8fca0f0d3f83658b40ea0d6 (diff)
downloadjack2-d9064f5866f011cafb297873cc107db86b414238.tar.gz
Implement session api for internal clients
Diffstat (limited to 'windows')
-rw-r--r--windows/JackWinNamedPipeServerChannel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/windows/JackWinNamedPipeServerChannel.cpp b/windows/JackWinNamedPipeServerChannel.cpp
index b557a33c..194e68ac 100644
--- a/windows/JackWinNamedPipeServerChannel.cpp
+++ b/windows/JackWinNamedPipeServerChannel.cpp
@@ -343,7 +343,7 @@ bool JackClientPipeThread::HandleRequest()
jack_log("JackRequest::SessionNotify");
JackSessionNotifyRequest req;
if (req.Read(fPipe) == 0) {
- fServer->GetEngine()->SessionNotify(req.fRefNum, req.fDst, req.fEventType, req.fPath, fPipe);
+ fServer->GetEngine()->SessionNotify(req.fRefNum, req.fDst, req.fEventType, req.fPath, fPipe, NULL);
}
res.Write(fPipe);
break;