From 651c312a7596e53e3c9464b61558b07f972b37f7 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Mon, 1 Jun 2015 15:28:33 -0400 Subject: [PATCH] FS-7499: fix build error on 32bit platforms --- src/switch_rtp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switch_rtp.c b/src/switch_rtp.c index 07a407d6e8..3905e57cb6 100644 --- a/src/switch_rtp.c +++ b/src/switch_rtp.c @@ -5705,7 +5705,7 @@ static switch_status_t process_rtcp_packet(switch_rtp_t *rtp_session, switch_siz if (msg->header.version != 2 || !(msg->header.type > 199 && msg->header.type < 208)) { switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(rtp_session->session), SWITCH_LOG_WARNING, - "INVALID RTCP PACKET TYPE %d VER %d LEN %ld\n", msg->header.type, + "INVALID RTCP PACKET TYPE %d VER %d LEN %" SWITCH_SIZE_T_FMT "\n", msg->header.type, msg->header.version, len); status = SWITCH_STATUS_BREAK; break;