Fix precedence error.
git-svn-id: svn://localhost/ardour2/branches/3.0@3777 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
e3191a50f5
commit
79f59951e3
@ -105,7 +105,7 @@ void MackieControlProtocol::read_ports()
|
||||
for ( int p = 0; p < nfds; ++p )
|
||||
{
|
||||
// this will cause handle_midi_any in the MackiePort to be triggered
|
||||
if ( pfd[p].revents & POLLIN > 0 )
|
||||
if ( (pfd[p].revents & POLLIN) > 0 )
|
||||
{
|
||||
// avoid deadlocking?
|
||||
// doesn't seem to make a difference
|
||||
|
Loading…
Reference in New Issue
Block a user