13
0

Fix operator typo (#4824).

git-svn-id: svn://localhost/ardour2/branches/3.0@11812 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2012-04-07 02:03:17 +00:00
parent 5ee8a4b6e3
commit bf2281d366

View File

@ -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;
}