[asterisk-commits] trunk r32703 - /trunk/apps/app_followme.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Tue Jun 6 13:55:18 MST 2006


Author: russell
Date: Tue Jun  6 15:55:17 2006
New Revision: 32703

URL: http://svn.digium.com/view/asterisk?rev=32703&view=rev
Log:
move a variable declaration to the beginning of a block

Modified:
    trunk/apps/app_followme.c

Modified: trunk/apps/app_followme.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_followme.c?rev=32703&r1=32702&r2=32703&view=diff
==============================================================================
--- trunk/apps/app_followme.c (original)
+++ trunk/apps/app_followme.c Tue Jun  6 15:55:17 2006
@@ -1081,9 +1081,9 @@
 
 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) {



More information about the asterisk-commits mailing list