justinzane / pulseaudio

pulseaudio fork primarily for the development of modules like module-lfe-lp
Other
2 stars 0 forks source link

Remove space between dereference operators and names. #14

Closed justinzane closed 11 years ago

justinzane commented 11 years ago
 lp = filter_biquad(& (u->s1lpdt[chan_idx]), * (u->lpfs), cur_sample);

Please don't put a space after the unary & and * operators (I wouldn't use the parentheses either, but they don't bother me so much). Also, similar to what I said earlier, I'd prefer "data" instead of "dt" and "factors" instead of "fs". I did not do that, CDT's autoformatter did. I did fail to see the damage, though. :) I'll definitely clean that ugliness up.