[FFmpeg-devel] [PATCH 2/3] avformat/http: fix stray quote in trace logging
Aman Gupta
ffmpeg at tmm1.net
Thu Oct 5 01:03:33 EEST 2017
From: Aman Gupta <aman at tmm1.net>
---
libavformat/http.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/http.c b/libavformat/http.c
index 6af3259a43..f76a71fbb7 100644
--- a/libavformat/http.c
+++ b/libavformat/http.c
@@ -1298,7 +1298,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) {
--
2.13.5 (Apple Git-94)
More information about the ffmpeg-devel
mailing list