[svn-commits] russell: branch 1.6.0 r161264 - in /branches/1.6.0: ./ apps/app_minivm.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Dec 5 07:55:59 CST 2008


Author: russell
Date: Fri Dec  5 07:55:58 2008
New Revision: 161264

URL: http://svn.digium.com/view/asterisk?view=rev&rev=161264
Log:
Merged revisions 161252 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
r161252 | russell | 2008-12-05 07:46:01 -0600 (Fri, 05 Dec 2008) | 2 lines

Resolve a compiler warning from buildbot about a NULL format string.

........

Modified:
    branches/1.6.0/   (props changed)
    branches/1.6.0/apps/app_minivm.c

Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.0/apps/app_minivm.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.0/apps/app_minivm.c?view=diff&rev=161264&r1=161263&r2=161264
==============================================================================
--- branches/1.6.0/apps/app_minivm.c (original)
+++ branches/1.6.0/apps/app_minivm.c Fri Dec  5 07:55:58 2008
@@ -960,7 +960,7 @@
 		return -1;
 	}
 	/* Allocate channel used for chanvar substitution */
-	ast = ast_channel_alloc(0, AST_STATE_DOWN, 0, 0, "", "", "", 0, 0);
+	ast = ast_channel_alloc(0, AST_STATE_DOWN, 0, 0, "", "", "", 0, "%s", "");
 
 
 	snprintf(dur, sizeof(dur), "%d:%02d", duration / 60, duration % 60);




More information about the svn-commits mailing list