summaryrefslogtreecommitdiff
path: root/libs/ardour/session_state.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2012-04-07 02:03:17 +0000
committerCarl Hetherington <carl@carlh.net>2012-04-07 02:03:17 +0000
commitbf2281d36633e69acb573206d36a709b1eeba9ca (patch)
tree15a2bf892f151964bb83d0e2eee0d07a5927a173 /libs/ardour/session_state.cc
parent5ee8a4b6e38ddfcbe8e8a4c4fb24a53401c682fd (diff)
Fix operator typo (#4824).
git-svn-id: svn://localhost/ardour2/branches/3.0@11812 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/session_state.cc')
-rw-r--r--libs/ardour/session_state.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc
index ae668c8730..651f365dad 100644
--- a/libs/ardour/session_state.cc
+++ b/libs/ardour/session_state.cc
@@ -3054,7 +3054,7 @@ struct null_deleter { void operator()(void const *) const {} };
void
Session::remove_controllable (Controllable* c)
{
- if (_state_of_the_state | Deletion) {
+ if (_state_of_the_state & Deletion) {
return;
}