From: Russell Bryant Date: Wed, 2 Jun 2010 17:57:39 +0000 (+0000) Subject: Silence a compiler warning. X-Git-Tag: 11.0.0-beta1~2934 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=266db9fa8c43f9e3c8c55e2f5bd44e432a7b91ee;p=thirdparty%2Fasterisk.git Silence a compiler warning. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@267093 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 259a7ad228..8876996c21 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -12395,7 +12395,9 @@ AST_TEST_DEFINE(test_voicemail_notify_endl) 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;