summaryrefslogtreecommitdiff
path: root/main/tdd.c
diff options
context:
space:
mode:
authorOlle Johansson <oej@edvina.net>2006-12-02 13:40:13 +0000
committerOlle Johansson <oej@edvina.net>2006-12-02 13:40:13 +0000
commit757363eda451f882110faccf4e4e4288dca7b53e (patch)
tree6edcf35e8240a8ba059f6c601fab99af33de1add /main/tdd.c
parentc23bc46089970c9c7275b662bbd48b0ed7310fc6 (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: https://origsvn.digium.com/svn/asterisk/trunk@48205 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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;
}
}