aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_voicemail.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-07-12 15:27:09 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-07-12 15:27:09 +0000
commit705f4425a1da0064709b6825c1b72bd4af74dfcd (patch)
treeb8c83685b483eb5400fcf0b7029a32ee142efa1a /apps/app_voicemail.c
parent80e7525b06b2044bc68f594802a394ae6035d715 (diff)
fix compiler warning (bug #4682)
git-svn-id: http://svn.digium.com/svn/asterisk/branches/v1-0@6109 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_voicemail.c')
-rwxr-xr-xapps/app_voicemail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index edd6843d9..6fc5deefa 100755
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -2270,7 +2270,7 @@ static int forward_message(struct ast_channel *chan, char *context, char *dir, i
char callerid[512];
char ext_context[256]="";
int res = 0, cmd = 0;
- struct ast_vm_user *receiver, *extensions = NULL, *vmtmp = NULL, *vmfree;
+ struct ast_vm_user *receiver = NULL, *extensions = NULL, *vmtmp = NULL, *vmfree;
char tmp[256];
char *stringp, *s;
int saved_messages = 0, found = 0;