aboutsummaryrefslogtreecommitdiffstats
path: root/main/dsp.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-06 19:10:03 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-06 19:10:03 +0000
commit9e6359da1b106db71a963f256e74d587e7b3dd97 (patch)
treeab9ed7bfeed00f99e9dbddd17f49d77b1d353b0a /main/dsp.c
parenta834208764ab2b1f7fcc0fdfdaf06912cf1670bb (diff)
minor formatting change ... testing mantis/svn
(issue #9828) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@67799 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/dsp.c')
-rw-r--r--main/dsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/dsp.c b/main/dsp.c
index 336d698fb..d7f2e967f 100644
--- a/main/dsp.c
+++ b/main/dsp.c
@@ -475,7 +475,7 @@ static int dtmf_detect (dtmf_detect_state_t *s, int16_t amp[], int samples,
#else
/* The following unrolled loop takes only 35% (rough estimate) of the
time of a rolled loop on the machine on which it was developed */
- for (j=sample;j<limit;j++) {
+ for (j = sample; j < limit; j++) {
famp = amp[j];
s->energy += famp*famp;
/* With GCC 2.95, the following unrolled code seems to take about 35%