From 910c66150862546ca90fbccca479c133d38df036 Mon Sep 17 00:00:00 2001 From: Jeff Lenk Date: Fri, 27 Dec 2013 14:52:52 -0600 Subject: [PATCH] fix trivial compiler warning for last commit --- 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 58c7c054c4..37865d2e9b 100644 --- a/src/switch_rtp.c +++ b/src/switch_rtp.c @@ -5638,7 +5638,7 @@ static int rtp_common_write(switch_rtp_t *rtp_session, if (send_msg) { bytes = datalen; - m = send_msg->header.m; + m = (uint8_t) send_msg->header.m; if (flags && *flags & SFF_RFC2833) { send_msg->header.pt = rtp_session->te;