[asterisk-commits] tilghman: branch 1.6.1 r156284 -	/branches/1.6.1/apps/app_meetme.c
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Wed Nov 12 13:04:24 CST 2008
    
    
  
Author: tilghman
Date: Wed Nov 12 13:04:23 2008
New Revision: 156284
URL: http://svn.digium.com/view/asterisk?view=rev&rev=156284
Log:
Fix build (res possibly unused in this function, says gcc)
Modified:
    branches/1.6.1/apps/app_meetme.c
Modified: branches/1.6.1/apps/app_meetme.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.1/apps/app_meetme.c?view=diff&rev=156284&r1=156283&r2=156284
==============================================================================
--- branches/1.6.1/apps/app_meetme.c (original)
+++ branches/1.6.1/apps/app_meetme.c Wed Nov 12 13:04:23 2008
@@ -1562,7 +1562,7 @@
 {
 	struct announce_listitem *current;
 	struct ast_conference *conf = data;
-	int res;
+	int res = 0;
 	char filename[PATH_MAX] = "";
 	AST_LIST_HEAD_NOLOCK(, announce_listitem) local_list;
 	AST_LIST_HEAD_INIT_NOLOCK(&local_list);
    
    
More information about the asterisk-commits
mailing list