aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_followme.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-06-06 20:55:17 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-06-06 20:55:17 +0000
commitb76bb3c057d2fb10db3b8f56645bdfe801d54298 (patch)
treeaa934104c0ab8eb88639095b6cd45199fcea0e0e /apps/app_followme.c
parentd74a113b77c9d18fa2ae500ddfb5c1245475904e (diff)
move a variable declaration to the beginning of a block
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@32703 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_followme.c')
-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 1172b8dd7..3bfafd32a 100644
--- a/apps/app_followme.c
+++ b/apps/app_followme.c
@@ -1081,9 +1081,9 @@ static int app_exec(struct ast_channel *chan, void *data)
static int unload_module(void *mod)
{
+ struct ast_call_followme *f;
STANDARD_HANGUP_LOCALUSERS;
ast_unregister_application(app);
- struct ast_call_followme *f;
/* Free Memory. Yeah! I'm free! */
AST_LIST_LOCK(&followmes);
AST_LIST_TRAVERSE_SAFE_BEGIN(&followmes, f, entry) {