aboutsummaryrefslogtreecommitdiffstats
path: root/main/tdd.c
diff options
context:
space:
mode:
authoroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-02 13:40:13 +0000
committeroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-02 13:40:13 +0000
commit59e97e4914236b260915a9598399763470598cfa (patch)
tree6edcf35e8240a8ba059f6c601fab99af33de1add /main/tdd.c
parent10d3f3f5ba29d3d173709db55f2cd02d7fd0677b (diff)
- Code formatting
- remove coef_in.h and coef_out.h that was only included as data definitions in fskmodem.c If you understand spanish, please help us translate the comments in fskmodem.c. Thanks! git-svn-id: http://svn.digium.com/svn/asterisk/trunk@48205 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/tdd.c')
-rw-r--r--main/tdd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/main/tdd.c b/main/tdd.c
index 0d7405c8b..bb7a5746e 100644
--- a/main/tdd.c
+++ b/main/tdd.c
@@ -174,7 +174,8 @@ int tdd_feed(struct tdd_state *tdd, unsigned char *ubuf, int len)
if (b > 0x7f)
continue;
c = tdd_decode_baudot(tdd,b);
- if ((c < 1) || (c > 126)) continue; /* if not valid */
+ if ((c < 1) || (c > 126))
+ continue; /* if not valid */
break;
}
}