mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix typo: the expression .. & .. == .. needs parentheses: (.. & ..) == ..
PR: 8280 (2/3 patches contained in this PR) Submitted by: Sakari Jalovaara <sja@tekla.fi>
This commit is contained in:
parent
4c6844ea51
commit
aa0d9efc2e
1 changed files with 1 additions and 1 deletions
|
|
@ -213,7 +213,7 @@ static int matcd_pause(int ldrive, int cdrive, int controller, int action)
|
|||
} /*<14>*/
|
||||
unlockbus(controller, ldrive); /*<16>Release bus*/
|
||||
|
||||
if (z & MATCD_ST_AUDIOBSY==0 && /*<14>If drive is idle*/
|
||||
if ((z & MATCD_ST_AUDIOBSY) == 0 && /*<14>If drive is idle*/
|
||||
cd->status==CD_AS_PLAY_IN_PROGRESS) { /*<14>but was playing*/
|
||||
cd->status=CD_AS_PLAY_COMPLETED; /*<14>then its done*/
|
||||
return(0);
|
||||
|
|
|
|||
Loading…
Reference in a new issue