style (whitespace)

This commit is contained in:
Connor Olding 2013-11-16 10:19:05 -08:00
parent 08602e69bc
commit 2dc7487a90

View File

@ -77,8 +77,8 @@ static bq_t
biquad_run(biquad *bq, bq_t x) {
bq_t y;
y = bq->b0 * x + bq->b1 * bq->x1 + bq->b2 * bq->x2
+ bq->a1 * bq->y1 + bq->a2 * bq->y2;
y = bq->b0*x + bq->b1*bq->x1 + bq->b2*bq->x2
+ bq->a1*bq->y1 + bq->a2*bq->y2;
bq->x2 = bq->x1;
bq->x1 = x;
bq->y2 = bq->y1;