mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-17 04:06:26 +01:00
fix AWOL semicolon in 9f842f3
This commit is contained in:
parent
9f842f3247
commit
2a9d7286f9
1 changed files with 5 additions and 5 deletions
|
|
@ -977,12 +977,12 @@ OSC::route_plugin_parameter (int rid, int piid, int par, float val)
|
||||||
if (!session)
|
if (!session)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
boost::shared_ptr<Route> r = session->route_by_remote_id (rid)
|
boost::shared_ptr<Route> r = session->route_by_remote_id (rid);
|
||||||
|
|
||||||
if (!r) {
|
if (!r) {
|
||||||
PBD::error << "OSC: Invalid Remote Control ID '" << rid << "'" << endmsg;
|
PBD::error << "OSC: Invalid Remote Control ID '" << rid << "'" << endmsg;
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
boost::shared_ptr<Processor> redi=r->nth_plugin (piid);
|
boost::shared_ptr<Processor> redi=r->nth_plugin (piid);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue