From 77f19ff8da8f89a24283be9a3c957e8e3cf584ba Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 5 Jun 2016 15:55:19 -0400 Subject: [PATCH] add braces --- gtk2_ardour/route_ui.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/route_ui.cc b/gtk2_ardour/route_ui.cc index dce08375ea..94725d04cf 100644 --- a/gtk2_ardour/route_ui.cc +++ b/gtk2_ardour/route_ui.cc @@ -99,7 +99,10 @@ RouteUI::RouteUI (ARDOUR::Session* sess) boost::to_lower (lpn); program_port_prefix = lpn + ":"; // e.g. "ardour:" } - if (sess) init (); + + if (sess) { + init (); + } } RouteUI::~RouteUI()