[Freeswitch-svn] [commit] r5797 - freeswitch/trunk/src

Freeswitch SVN mikej at freeswitch.org
Thu Oct 4 14:28:05 EDT 2007


Author: mikej
Date: Thu Oct  4 14:28:05 2007
New Revision: 5797

Modified:
   freeswitch/trunk/src/switch_ivr.c

Log:
fix warning

Modified: freeswitch/trunk/src/switch_ivr.c
==============================================================================
--- freeswitch/trunk/src/switch_ivr.c	(original)
+++ freeswitch/trunk/src/switch_ivr.c	Thu Oct  4 14:28:05 2007
@@ -1548,7 +1548,7 @@
 
 		if ((jb_frame = stfu_n_read_a_frame(jb))) {
 			write_frame.data = jb_frame->data;
-			write_frame.datalen = jb_frame->dlen;
+			write_frame.datalen = (uint32_t)jb_frame->dlen;
 			status = switch_core_session_write_frame(session, &write_frame, -1, 0);
 			if (!SWITCH_READ_ACCEPTABLE(status)) {
 				break;



More information about the Freeswitch-svn mailing list