summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2012-04-05 01:21:44 +0000
committerCarl Hetherington <carl@carlh.net>2012-04-05 01:21:44 +0000
commitbf96210e34f9ae1d080b19c38494f02e0586d340 (patch)
tree10119914b90f8af465001cfdd0e3b0be2f0c3eca
parent338e83d9dc2aca8ced4358df7dae13e11a5c71a7 (diff)
Fix operator precedance inaccuracy (#4825).
git-svn-id: svn://localhost/ardour2/branches/3.0@11791 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--libs/ardour/session.cc2
1 files changed, 1 insertions, 1 deletions
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<Source> 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.