From: Steinar H. Gunderson Date: Sun, 1 Dec 2013 00:18:41 +0000 (+0100) Subject: Fix some signed/unsigned comparison warnings (pacing_rate should be uint32_t everywhe... X-Git-Tag: 1.0.2~8 X-Git-Url: https://git.sesse.net/?p=cubemap;a=commitdiff_plain;h=2db77ae295ff8381a378a27328ff2ecd600aff29 Fix some signed/unsigned comparison warnings (pacing_rate should be uint32_t everywhere, not just in UDPStream). --- diff --git a/stream.h b/stream.h index d29b924..5e694aa 100644 --- a/stream.h +++ b/stream.h @@ -85,7 +85,7 @@ struct Stream { MarkPool *mark_pool; // Maximum pacing rate for the stream. - int pacing_rate; + uint32_t pacing_rate; // Queued data, if any. Protected by . // The data pointers in the iovec are owned by us.