From 3cd6a49d8f7eaf4479358b7ed0f8376b975e62a9 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Thu, 4 Oct 2007 18:28:05 +0000 Subject: [PATCH] fix warning git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5797 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/switch_ivr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switch_ivr.c b/src/switch_ivr.c index ef32e0f3aa..156252501b 100644 --- a/src/switch_ivr.c +++ b/src/switch_ivr.c @@ -1548,7 +1548,7 @@ SWITCH_DECLARE(void) switch_ivr_delay_echo(switch_core_session_t *session, uint3 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;