[FFmpeg-cvslog] avformat/http: fix stray quote in trace logging
Aman Gupta
git at videolan.org
Mon Nov 13 21:20:25 EET 2017
ffmpeg | branch: master | Aman Gupta <aman at tmm1.net> | Mon Nov 13 11:12:52 2017 -0800| [52bf0febb3a8a47b16ac6c3bfd707c347299f174] | committer: Aman Gupta
avformat/http: fix stray quote in trace logging
Signed-off-by: Aman Gupta <aman at tmm1.net>
Reviewed-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=52bf0febb3a8a47b16ac6c3bfd707c347299f174
---
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) {
More information about the ffmpeg-cvslog
mailing list