From 738d90a5cfd6c6051b4749b29ff17f22d5c85772 Mon Sep 17 00:00:00 2001 From: Nikolaus Gullotta Date: Thu, 4 Apr 2019 10:36:10 -0500 Subject: [PATCH] NO-OP: add missing curly-braces --- libs/ardour/phase_control.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/ardour/phase_control.cc b/libs/ardour/phase_control.cc index caa82af82c..e52e1eb8eb 100644 --- a/libs/ardour/phase_control.cc +++ b/libs/ardour/phase_control.cc @@ -86,8 +86,9 @@ PhaseControl::set_state (XMLNode const & node, int version) std::string str; if (node.get_property (X_("phase-invert"), str)) { - if(str.length() != 0) + if(str.length() != 0) { set_phase_invert (boost::dynamic_bitset<> (str)); + } } return 0;