avformat/http: fix stray quote in trace logging

Signed-off-by: Aman Gupta <aman@tmm1.net>
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Aman Gupta 2017-11-13 11:12:52 -08:00 committed by Aman Gupta
parent 480d33dfdc
commit 52bf0febb3

View File

@ -1293,7 +1293,7 @@ static int http_buf_read(URLContext *h, uint8_t *buf, int size)
s->chunksize = strtoull(line, NULL, 16);
av_log(h, AV_LOG_TRACE,
"Chunked encoding data size: %"PRIu64"'\n",
"Chunked encoding data size: %"PRIu64"\n",
s->chunksize);
if (!s->chunksize) {