summaryrefslogtreecommitdiff
path: root/common/JackThreadedDriver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/JackThreadedDriver.cpp')
-rw-r--r--common/JackThreadedDriver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/JackThreadedDriver.cpp b/common/JackThreadedDriver.cpp
index 0ab139eb..df2b6d27 100644
--- a/common/JackThreadedDriver.cpp
+++ b/common/JackThreadedDriver.cpp
@@ -137,9 +137,9 @@ std::list<JackDriverInterface*> JackThreadedDriver::GetSlaves()
return fDriver->GetSlaves();
}
-int JackThreadedDriver::ClientNotify(int refnum, const char* name, int notify, int sync, int value1, int value2)
+int JackThreadedDriver::ClientNotify(int refnum, const char* name, int notify, int sync, const char* message, int value1, int value2)
{
- return fDriver->ClientNotify(refnum, name, notify, sync, value1, value2);
+ return fDriver->ClientNotify(refnum, name, notify, sync, message, value1, value2);
}
JackClientControl* JackThreadedDriver::GetClientControl() const