avformat/http: fix stray quote in trace logging

Signed-off-by: Aman Gupta <aman@tmm1.net>
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
pull/272/head
Aman Gupta 7 years ago committed by Aman Gupta
parent 480d33dfdc
commit 52bf0febb3
  1. 2
      libavformat/http.c

@ -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) {

Loading…
Cancel
Save