[asterisk-commits] russell: branch 1.6.1 r161285 - in /branches/1.6.1: ./ apps/app_minivm.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Dec 5 08:03:32 CST 2008
Author: russell
Date: Fri Dec 5 08:03:32 2008
New Revision: 161285
URL: http://svn.digium.com/view/asterisk?view=rev&rev=161285
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.1/ (props changed)
branches/1.6.1/apps/app_minivm.c
Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.1/apps/app_minivm.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.1/apps/app_minivm.c?view=diff&rev=161285&r1=161284&r2=161285
==============================================================================
--- branches/1.6.1/apps/app_minivm.c (original)
+++ branches/1.6.1/apps/app_minivm.c Fri Dec 5 08:03:32 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 asterisk-commits
mailing list