aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_waitforring.c
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-04-25 20:20:10 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-04-25 20:20:10 +0000
commit48f62970c31279141d519f7f64bd5d6d875d7215 (patch)
tree6a302ccb7b6599b8c7d7de1daeebed89f8fc3544 /apps/app_waitforring.c
parent784c0931ff31bfb0ac1ada811359779d3133333d (diff)
Whitespace changes only
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@114667 f38db490-d61c-443f-a65b-d21fe96a405b
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;