From 52f99e95310fd2b190613f16ffbb3b55cf2a9d9e Mon Sep 17 00:00:00 2001 From: Mark Hills Date: Sat, 21 Jul 2012 14:06:35 +0100 Subject: [PATCH] Cast to preferred type of ortp function --- rx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rx.c b/rx.c index bc8c062..4a1acce 100644 --- a/rx.c +++ b/rx.c @@ -83,7 +83,7 @@ static int run_rx(RtpSession *session, char buf[32768]; void *packet; - r = rtp_session_recv_with_ts(session, buf, + r = rtp_session_recv_with_ts(session, (uint8_t*)buf, sizeof(buf), ts, &have_more); assert(r >= 0); assert(have_more == 0);