From 3525efa6cb3a08500ea4fe1e2874fa7a6d0ec5f4 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Thu, 31 Aug 2006 22:01:26 +0200 Subject: [PATCH] ortp_send.c: fix to gcc signedness warnings --- ortp_send.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ortp_send.c b/ortp_send.c index b084bb68..deb7d947 100644 --- a/ortp_send.c +++ b/ortp_send.c @@ -78,7 +78,7 @@ static void ortp_send_buf(char *buf, int len, long unsigned chunks_sent) continue; WRITE_CHUNK_TS(buf, ot->chunk_ts); ts = ot->chunk_ts * chunks_sent; - ret = rtp_session_send_with_ts(ot->session, buf, len, ts); + ret = rtp_session_send_with_ts(ot->session, (unsigned char *)buf, len, ts); ot->last_ts = ts; if (ret < 0) ortp_delete_target(ot, "send error"); @@ -130,7 +130,7 @@ static void ortp_init_session(struct ortp_target *ot) /* called by afs */ static void ortp_shutdown_targets(void) { - char buf[ORTP_AUDIO_HEADER_LEN]; + unsigned char buf[ORTP_AUDIO_HEADER_LEN]; struct ortp_target *ot, *tmp; WRITE_PACKET_TYPE(buf, ORTP_EOF); -- 2.39.2