From 52bf0febb3a8a47b16ac6c3bfd707c347299f174 Mon Sep 17 00:00:00 2001
From: Aman Gupta <aman at tmm1.net>
Date: Mon, 13 Nov 2017 11:12:52 -0800
Subject: [PATCH] avformat/http: fix stray quote in trace	logging

Signed-off-by: Aman Gupta <aman@tmm1.net>
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
---
 libavformat/http.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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