diff options
Diffstat (limited to 'src/client/OSCClientReceiver.cpp')
-rw-r--r-- | src/client/OSCClientReceiver.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/OSCClientReceiver.cpp b/src/client/OSCClientReceiver.cpp index 31c0aa2a..d0119987 100644 --- a/src/client/OSCClientReceiver.cpp +++ b/src/client/OSCClientReceiver.cpp @@ -200,10 +200,10 @@ OSCClientReceiver::_connection_cb(const char* path, const char* types, lo_arg** int OSCClientReceiver::_disconnection_cb(const char* path, const char* types, lo_arg** argv, int argc, lo_message msg) { - const char* src_port_path = &argv[0]->s; - const char* dst_port_path = &argv[1]->s; + const char* src_uri = &argv[0]->s; + const char* dst_uri = &argv[1]->s; - _target->disconnect(src_port_path, dst_port_path); + _target->disconnect(src_uri, dst_uri); return 0; } |