From 710a2e8ea605743af607c3c2a607a3983c462923 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Fri, 13 Apr 2007 17:15:45 +0000 Subject: [PATCH] Merged revisions 61645 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r61645 | russell | 2007-04-13 12:10:19 -0500 (Fri, 13 Apr 2007) | 3 lines Eliminate a compiler warning with ODBC_STORAGE enabled so that it will build under dev-mode. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@61647 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_voicemail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 04584d613a..408005a26c 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -1392,7 +1392,7 @@ static int store_file(char *dir, char *mailboxuser, char *mailboxcontext, int ms void *fdm = MAP_FAILED; size_t fdlen = -1; SQLHSTMT stmt; - SQLINTEGER len; + SQLLEN len; char sql[PATH_MAX]; char msgnums[20]; char fn[PATH_MAX];