[asterisk-commits] russell: trunk r267093 - /trunk/apps/app_voicemail.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Jun 2 12:57:41 CDT 2010
Author: russell
Date: Wed Jun 2 12:57:39 2010
New Revision: 267093
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=267093
Log:
Silence a compiler warning.
Modified:
trunk/apps/app_voicemail.c
Modified: trunk/apps/app_voicemail.c
URL: http://svnview.digium.com/svn/asterisk/trunk/apps/app_voicemail.c?view=diff&rev=267093&r1=267092&r2=267093
==============================================================================
--- trunk/apps/app_voicemail.c (original)
+++ trunk/apps/app_voicemail.c Wed Jun 2 12:57:39 2010
@@ -12395,7 +12395,9 @@
char attach[] = "/var/lib/asterisk/sounds/en/tt-weasels", attach2[] = "/var/lib/asterisk/sounds/en/tt-somethingwrong";
char buf[256] = ""; /* No line should actually be longer than 80 */
struct ast_channel *chan = NULL;
- struct ast_vm_user *vmu, vmus;
+ struct ast_vm_user *vmu, vmus = {
+ .flags = 0,
+ };
FILE *file;
struct {
char *name;
More information about the asterisk-commits
mailing list