From d3423ffbda2076de67968a8ca84ca413e12bf122 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Sat, 1 Dec 2007 04:51:06 +0000 Subject: [PATCH] fix build git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6457 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/switch_ivr_async.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switch_ivr_async.c b/src/switch_ivr_async.c index cb0a4eb355..c454f603ad 100644 --- a/src/switch_ivr_async.c +++ b/src/switch_ivr_async.c @@ -535,7 +535,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_eavesdrop_session(switch_core_session if (switch_buffer_inuse(ep.buffer) >= len) { switch_buffer_lock(ep.buffer); - write_frame.datalen = switch_buffer_read(ep.buffer, buf, len); + write_frame.datalen = (uint32_t)switch_buffer_read(ep.buffer, buf, len); write_frame.samples = write_frame.datalen / 2; if (switch_core_session_write_frame(session, &write_frame, 1000, 0) != SWITCH_STATUS_SUCCESS) { goto end;