Cast to preferred type of ortp function

master
Mark Hills 2012-07-21 14:06:35 +01:00
parent 80d750323f
commit 52f99e9531
1 changed files with 1 additions and 1 deletions

2
rx.c
View File

@ -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);