aboutsummaryrefslogtreecommitdiffstats
path: root/app.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-05-25 10:57:15 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-05-25 10:57:15 +0000
commit3c746d45b9512fd4efdabe7533b3137bbf5d6b8f (patch)
tree9a917a19f9faf4d2766126637a1244fa001c054a /app.c
parent7c5a33d979721cc76a417bc0222c73d8a222630a (diff)
various code cleanups (bug #4353)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5764 f38db490-d61c-443f-a65b-d21fe96a405b
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)