aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-06-06 20:37:51 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-06-06 20:37:51 +0000
commitadc473540de6c632a31adb6281a7102457423ad0 (patch)
tree2484fe9a3eed1ce00747d9e4d5a21a9fe0760566 /apps
parentfb5889cdc444d2b31038d13197798f67c7d1bdf1 (diff)
move a declaration to the beginning of a block
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@32697 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_followme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_followme.c b/apps/app_followme.c
index 5e71cc335..bdf4544fe 100644
--- a/apps/app_followme.c
+++ b/apps/app_followme.c
@@ -848,8 +848,8 @@ static void findmeexec(void *args)
outbound->cdr = ast_cdr_alloc();
}
if (outbound->cdr) {
- ast_cdr_init(outbound->cdr, outbound);
char tmp[256];
+ ast_cdr_init(outbound->cdr, outbound);
snprintf(tmp, 256, "%s/%s", "Local", dialarg);
ast_cdr_setapp(outbound->cdr,"FollowMe",tmp);
ast_cdr_update(outbound);