aboutsummaryrefslogtreecommitdiffstats
path: root/app.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-06-14 21:07:48 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-06-14 21:07:48 +0000
commit0bfe0ab462fb225036e78350c41c3280686215c8 (patch)
treec24d2d218a5dbbda76a6b2360c7d1890249c0ac3 /app.c
parentbae48b2eb0e2a894a5fc39b592be289f49a1141f (diff)
remove pointless dereference (bug #4353)
git-svn-id: http://svn.digium.com/svn/asterisk/branches/v1-0@5914 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 5653cf167..bccac6915 100755
--- a/app.c
+++ b/app.c
@@ -278,7 +278,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)