Skip to content

Commit

Permalink
format cubeb_sndio.c
Browse files Browse the repository at this point in the history
  • Loading branch information
padenot committed Feb 1, 2023
1 parent 0846b39 commit 70b4e3d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cubeb_sndio.c
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,8 @@ sndio_stream_init(cubeb * context, cubeb_stream ** stream,
goto err;
}
if (rpar.bits != wpar.bits || rpar.le != wpar.le || rpar.sig != wpar.sig ||
rpar.bps != wpar.bps || (wpar.bits < 8 * wpar.bps && rpar.msb != wpar.msb) ||
rpar.bps != wpar.bps ||
(wpar.bits < 8 * wpar.bps && rpar.msb != wpar.msb) ||
rpar.rate != wpar.rate ||
((s->mode & SIO_REC) && rpar.rchan != wpar.rchan) ||
((s->mode & SIO_PLAY) && rpar.pchan != wpar.pchan)) {
Expand Down

0 comments on commit 70b4e3d

Please sign in to comment.