summaryrefslogtreecommitdiff
path: root/app.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2005-05-25 10:57:15 +0000
committerRussell Bryant <russell@russellbryant.com>2005-05-25 10:57:15 +0000
commit9644f1dcfe31c89fb5d1003e9932f93ca28bf6d8 (patch)
tree9a917a19f9faf4d2766126637a1244fa001c054a /app.c
parent5d5c4c97c7a699bb8802ba8c53955485de23e36a (diff)
various code cleanups (bug #4353)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5764 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'app.c')
-rwxr-xr-xapp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.c b/app.c
index cce0cbeec..93273b1a7 100755
--- a/app.c
+++ b/app.c
@@ -271,7 +271,7 @@ int ast_dtmf_stream(struct ast_channel *chan,struct ast_channel *peer,char *digi
if (!res) {
res = ast_waitfor(chan,100);
if (res > -1) {
- for (ptr=digits;*ptr;*ptr++) {
+ for (ptr=digits; *ptr; ptr++) {
if (*ptr == 'w') {
res = ast_safe_sleep(chan, 500);
if (res)