aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_echo.c
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-10-15 15:30:21 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-10-15 15:30:21 +0000
commit98cebd4ad8963290070294a38a344874be571441 (patch)
tree038537c020767915cbdf068f4b5758de4311b773 /apps/app_echo.c
parent0d0fb7976f8460a5c16162245ed12c5b3deae146 (diff)
Minor spacing change
(closes issue #13697) Reported by: alecdavis Patches: app_echo.bug13697.103249.diff.txt uploaded by alecdavis (license 585) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@149588 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_echo.c')
-rw-r--r--apps/app_echo.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/app_echo.c b/apps/app_echo.c
index 1a8abe9f0..76c701cd7 100644
--- a/apps/app_echo.c
+++ b/apps/app_echo.c
@@ -54,8 +54,9 @@ static int echo_exec(struct ast_channel *chan, void *data)
while (ast_waitfor(chan, -1) > -1) {
struct ast_frame *f = ast_read(chan);
- if (!f)
+ if (!f) {
break;
+ }
f->delivery.tv_sec = 0;
f->delivery.tv_usec = 0;
if (ast_write(chan, f)) {