summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2005-07-12 15:22:55 +0000
committerRussell Bryant <russell@russellbryant.com>2005-07-12 15:22:55 +0000
commit4f64fe03f06ca80ef51d89ef9c3e811225b3f454 (patch)
tree61a267dff62f8cfbf44a579e1b1d74901310ddc3 /apps
parent24f9f8586bfedb91caabf2cca9435a2c334a1bf4 (diff)
get rid of compiler warning (bug #4682)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6107 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-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 bbf6cedc5..3e8399694 100755
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -3024,7 +3024,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;