move a variable declaration to the beginning of a block

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@32703 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant 2006-06-06 20:55:17 +00:00
parent 6947fdbf62
commit 004848236a
1 changed files with 1 additions and 1 deletions

View File

@ -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) {