From: Mike Brady Date: Sat, 25 Nov 2017 20:46:37 +0000 (+0000) Subject: Quieten a warning from clang on FreeBSD X-Git-Tag: 3.2d16~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=455d93485d0cc3f151ada1619cee0fd96f07487b;p=thirdparty%2Fshairport-sync.git Quieten a warning from clang on FreeBSD --- diff --git a/rtp.c b/rtp.c index 14f99618..1e082bd1 100644 --- a/rtp.c +++ b/rtp.c @@ -780,7 +780,7 @@ void rtp_request_resend(seq_t first, uint32_t count, rtsp_conn_info *conn) { char req[8]; // *not* a standard RTCP NACK req[0] = 0x80; - req[1] = 0x55 | 0x80; // Apple 'resend' + req[1] = (char)0x55 | (char)0x80; // Apple 'resend' *(unsigned short *)(req + 2) = htons(1); // our seqnum *(unsigned short *)(req + 4) = htons(first); // missed seqnum *(unsigned short *)(req + 6) = htons(count); // count