summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2013-06-15 16:40:05 -0700
committerJohnathan Corgan <johnathan@corganlabs.com>2013-06-15 16:40:05 -0700
commitf0025e49fe8008332c715ca0ace27a7d62f70d6d (patch)
tree190886720adc0a46c0337b7f7b627bba9e062c27
parentd37108be86951a60472e8aae5bd35f8c127b6871 (diff)
analog: fixup whitespace in agc3_cc_impl.cc
-rw-r--r--gr-analog/lib/agc3_cc_impl.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/gr-analog/lib/agc3_cc_impl.cc b/gr-analog/lib/agc3_cc_impl.cc
index 6ba6814ad1..0e02478e34 100644
--- a/gr-analog/lib/agc3_cc_impl.cc
+++ b/gr-analog/lib/agc3_cc_impl.cc
@@ -69,15 +69,15 @@ namespace gr {
gr_complex *out = (gr_complex*)output_items[0];
// Compute magnitude of each sample
#ifdef __GNUC__
- float mags[noutput_items] __attribute__ ((aligned (16)));
- volk_32fc_magnitude_32f(mags, &in[0], noutput_items);
- // Compute a linear average on reset (no expected)
+ float mags[noutput_items] __attribute__ ((aligned (16)));
+ volk_32fc_magnitude_32f(mags, &in[0], noutput_items);
+ // Compute a linear average on reset (no expected)
if(__builtin_expect(d_reset, false)) {
#else
- std::vector<float> mags(noutput_items);
- volk_32fc_magnitude_32f(&mags[0], &in[0], noutput_items);
- // Compute a linear average on reset (no expected)
- if(!d_reset) {
+ std::vector<float> mags(noutput_items);
+ volk_32fc_magnitude_32f(&mags[0], &in[0], noutput_items);
+ // Compute a linear average on reset (no expected)
+ if(!d_reset) {
#endif
float mag;
for(int i=0; i<noutput_items; i++) {