From: Steinar H. Gunderson Date: Sat, 7 Apr 2018 09:15:50 +0000 (+0200) Subject: Fix a GCC warning. X-Git-Tag: 1.4.0~21 X-Git-Url: https://git.sesse.net/?p=cubemap;a=commitdiff_plain;h=6a647d84c4a76fba4f91fcb75ab8185dc7628d67;hp=58dd753c464d917dc446e2cbb4c01fd750d4eb87 Fix a GCC warning. --- diff --git a/config.h b/config.h index 11907db..b5461cc 100644 --- a/config.h +++ b/config.h @@ -23,7 +23,7 @@ struct StreamConfig { // These only matter if hls_url is nonempty. int hls_frag_duration = 6; // Apple recommendation (“HLS Authoring Specification for Apple Devices”, point 7.5). - int hls_backlog_margin = 0; + size_t hls_backlog_margin = 0; }; struct UDPStreamConfig {