# HG changeset patch # User ramiro # Date 1241624245 0 # Node ID de33a215fd84f6c05b54804b7c9383a4cc5e1c9f # Parent 8074df65339245221f501303558405e4847bfde6 mlpdec: Fix indentation that got mangled from copy&paste. diff -r 8074df653392 -r de33a215fd84 mlpdec.c --- a/mlpdec.c Wed May 06 06:49:04 2009 +0000 +++ b/mlpdec.c Wed May 06 15:37:25 2009 +0000 @@ -620,10 +620,10 @@ return -1; } /* The FIR and IIR filters must have the same precision. - * To simplify the filtering code, only the precision of the - * FIR filter is considered. If only the IIR filter is employed, - * the FIR filter precision is set to that of the IIR filter, so - * that the filtering code can use it. */ + * To simplify the filtering code, only the precision of the + * FIR filter is considered. If only the IIR filter is employed, + * the FIR filter precision is set to that of the IIR filter, so + * that the filtering code can use it. */ if (!fir->order && iir->order) fir->shift = iir->shift;