Commit 52bf0feb authored by Aman Gupta's avatar Aman Gupta Committed by Aman Gupta

avformat/http: fix stray quote in trace logging

Signed-off-by: 's avatarAman Gupta <aman@tmm1.net>
Reviewed-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 480d33df
...@@ -1293,7 +1293,7 @@ static int http_buf_read(URLContext *h, uint8_t *buf, int size) ...@@ -1293,7 +1293,7 @@ static int http_buf_read(URLContext *h, uint8_t *buf, int size)
s->chunksize = strtoull(line, NULL, 16); s->chunksize = strtoull(line, NULL, 16);
av_log(h, AV_LOG_TRACE, av_log(h, AV_LOG_TRACE,
"Chunked encoding data size: %"PRIu64"'\n", "Chunked encoding data size: %"PRIu64"\n",
s->chunksize); s->chunksize);
if (!s->chunksize) { if (!s->chunksize) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment