summaryrefslogtreecommitdiff
path: root/apps/app_waitforring.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2008-04-25 20:20:10 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2008-04-25 20:20:10 +0000
commit463a5dbd0a76c80e40c55c8883074e3db0807908 (patch)
tree6a302ccb7b6599b8c7d7de1daeebed89f8fc3544 /apps/app_waitforring.c
parentab608c09e2dad2dac9dcb4f52b22a9eb5f5e2ea0 (diff)
Whitespace changes only
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@114667 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_waitforring.c')
-rw-r--r--apps/app_waitforring.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/app_waitforring.c b/apps/app_waitforring.c
index b4248fee9..f2d21e516 100644
--- a/apps/app_waitforring.c
+++ b/apps/app_waitforring.c
@@ -53,12 +53,12 @@ static int waitforring_exec(struct ast_channel *chan, void *data)
int ms;
if (!data || (sscanf(data, "%lg", &s) != 1)) {
- ast_log(LOG_WARNING, "WaitForRing requires an argument (minimum seconds)\n");
+ ast_log(LOG_WARNING, "WaitForRing requires an argument (minimum seconds)\n");
return 0;
}
- ms = s*1000.0;
- while(ms > 0) {
+ ms = s * 1000.0;
+ while (ms > 0) {
ms = ast_waitfor(chan, ms);
if (ms < 0) {
res = ms;