From 2db77ae295ff8381a378a27328ff2ecd600aff29 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 1 Dec 2013 01:18:41 +0100 Subject: [PATCH] Fix some signed/unsigned comparison warnings (pacing_rate should be uint32_t everywhere, not just in UDPStream). --- stream.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.39.2