From db92a3e4630f21535bc3410165edc626232a802a Mon Sep 17 00:00:00 2001 From: Steven Liu Date: Fri, 6 Sep 2019 12:47:15 +0800 Subject: [PATCH] avformat/hlsenc: fix compiling error of hlsenc --- libavformat/hlsenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index ec654bffbe..f881bb9d60 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -2698,7 +2698,7 @@ static int hls_init(AVFormatContext *s) } if (!hls->method && http_base_proto) { - av_log(c, AV_LOG_WARNING, "No HTTP method set, hls muxer defaulting to method PUT.\n"); + av_log(hls, AV_LOG_WARNING, "No HTTP method set, hls muxer defaulting to method PUT.\n"); } ret = validate_name(hls->nb_varstreams, s->url);