diff --git a/sys/i386/isa/matcd/audio.c b/sys/i386/isa/matcd/audio.c index a7891cb1236..b395fb41064 100644 --- a/sys/i386/isa/matcd/audio.c +++ b/sys/i386/isa/matcd/audio.c @@ -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);