mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 11:06:32 +01:00
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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue