[Freeswitch-svn] [commit] r6401 - freeswitch/trunk/src/mod/applications/mod_voicemail

Freeswitch SVN mikej at freeswitch.org
Mon Nov 26 18:49:12 EST 2007


Author: mikej
Date: Mon Nov 26 18:49:12 2007
New Revision: 6401

Modified:
   freeswitch/trunk/src/mod/applications/mod_voicemail/mod_voicemail.c

Log:
match var types to function

Modified: freeswitch/trunk/src/mod/applications/mod_voicemail/mod_voicemail.c
==============================================================================
--- freeswitch/trunk/src/mod/applications/mod_voicemail/mod_voicemail.c	(original)
+++ freeswitch/trunk/src/mod/applications/mod_voicemail/mod_voicemail.c	Mon Nov 26 18:49:12 2007
@@ -1325,7 +1325,7 @@
                 callback_t cbt = { 0 };
                 char msg_count[80] = "";
                 cc_t cc = { 0 };
-                uint32_t message_len = 0;
+                switch_size_t message_len = 0;
 
                 cbt.buf = msg_count;
                 cbt.len = sizeof(msg_count);
@@ -1617,7 +1617,7 @@
     char buf[2];
     char *greet_path = NULL;
 	const char *voicemail_greeting_number = NULL;
-    uint32_t message_len = 0;
+    switch_size_t message_len = 0;
 	switch_time_exp_t tm;
 	char date[80] = "";
 	switch_size_t retsize;



More information about the Freeswitch-svn mailing list