From bf96210e34f9ae1d080b19c38494f02e0586d340 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 5 Apr 2012 01:21:44 +0000 Subject: [PATCH] Fix operator precedance inaccuracy (#4825). git-svn-id: svn://localhost/ardour2/branches/3.0@11791 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/session.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index 73e8070099..624e5df13d 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -2990,7 +2990,7 @@ Session::remove_source (boost::weak_ptr src) } } - if (!_state_of_the_state & InCleanup) { + if (!(_state_of_the_state & InCleanup)) { /* save state so we don't end up with a session file referring to non-existent sources.