aboutsummaryrefslogtreecommitdiffstats
path: root/codecs
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-06-09 20:26:25 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-06-09 20:26:25 +0000
commit926f67f6828f49103b6c204fe6da0641465e4dad (patch)
treeb3a9bae525ea865191b97b02e3e915d5db52de87 /codecs
parent93759871fc4268063f64070935ec5a145ca0f2ed (diff)
various minor portability fixes (mostly from tholo for OpenBSD)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@33350 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'codecs')
-rw-r--r--codecs/gsm/src/preprocess.c14
1 files changed, 4 insertions, 10 deletions
diff --git a/codecs/gsm/src/preprocess.c b/codecs/gsm/src/preprocess.c
index bbfe3146a..fe63d678a 100644
--- a/codecs/gsm/src/preprocess.c
+++ b/codecs/gsm/src/preprocess.c
@@ -36,19 +36,13 @@ void Gsm_Preprocess P3((S, s, so),
word * s,
word * so ) /* [0..159] IN/OUT */
{
-
- word z1 = S->z1;
- longword L_z2 = S->L_z2;
- word mp = S->mp;
-
+ word z1 = S->z1;
+ longword L_z2 = S->L_z2;
+ word mp = S->mp;
word s1;
-
-
word SO;
-
ulongword utmp; /* for L_ADD */
-
- register int k = 160;
+ register int k = 160;
while (k--) {