From 0bfe0ab462fb225036e78350c41c3280686215c8 Mon Sep 17 00:00:00 2001 From: russell Date: Tue, 14 Jun 2005 21:07:48 +0000 Subject: remove pointless dereference (bug #4353) git-svn-id: http://svn.digium.com/svn/asterisk/branches/v1-0@5914 f38db490-d61c-443f-a65b-d21fe96a405b --- app.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app.c') 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) -- cgit v1.2.3