summaryrefslogtreecommitdiff
path: root/libavformat/http.c
diff options
context:
space:
mode:
authorAman Gupta <aman at tmm1.net>2017-11-13 11:12:52 -0800
committerAman Gupta <aman@tmm1.net>2017-11-13 11:19:25 -0800
commit52bf0febb3a8a47b16ac6c3bfd707c347299f174 (patch)
treec2549260ff1f6d062a7946ec2008ca7608dc06bf /libavformat/http.c
parent480d33dfdc590c0509a4acdb6c2754e208123aab (diff)
avformat/http: fix stray quote in trace logging
Signed-off-by: Aman Gupta <aman@tmm1.net> Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/http.c')
-rw-r--r--libavformat/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/http.c b/libavformat/http.c
index bd9148f45d..29635eb546 100644
--- a/libavformat/http.c
+++ b/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) {