From 2a9d7286f9058f3baa730078254fbe552d2296c4 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Fri, 20 Mar 2015 22:08:17 +0100 Subject: [PATCH] fix AWOL semicolon in 9f842f3 --- libs/surfaces/osc/osc.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libs/surfaces/osc/osc.cc b/libs/surfaces/osc/osc.cc index d31446e297..61d7969819 100644 --- a/libs/surfaces/osc/osc.cc +++ b/libs/surfaces/osc/osc.cc @@ -977,12 +977,12 @@ OSC::route_plugin_parameter (int rid, int piid, int par, float val) if (!session) return -1; - boost::shared_ptr r = session->route_by_remote_id (rid) + boost::shared_ptr r = session->route_by_remote_id (rid); - if (!r) { - PBD::error << "OSC: Invalid Remote Control ID '" << rid << "'" << endmsg; - return -1; - } + if (!r) { + PBD::error << "OSC: Invalid Remote Control ID '" << rid << "'" << endmsg; + return -1; + } boost::shared_ptr redi=r->nth_plugin (piid);