From 6a647d84c4a76fba4f91fcb75ab8185dc7628d67 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sat, 7 Apr 2018 11:15:50 +0200 Subject: [PATCH] Fix a GCC warning. --- config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.39.2