From: Russell Bryant Date: Tue, 6 Jun 2006 20:55:17 +0000 (+0000) Subject: move a variable declaration to the beginning of a block X-Git-Tag: 1.4.0-beta1~1016 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=004848236a51560e578c798705d3458ea1beba2d;p=thirdparty%2Fasterisk.git 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 --- diff --git a/apps/app_followme.c b/apps/app_followme.c index 1172b8dd7c..3bfafd32a1 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) {