diff mbox

[FFmpeg-devel,2/3] avformat/http: fix stray quote in trace logging

Message ID 20171004220334.79264-2-ffmpeg@tmm1.net
State Accepted
Commit 52bf0febb3a8a47b16ac6c3bfd707c347299f174
Headers show

Commit Message

Aman Karmani Oct. 4, 2017, 10:03 p.m. UTC
From: Aman Gupta <aman@tmm1.net>

---
 libavformat/http.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Michael Niedermayer Oct. 6, 2017, 12:01 a.m. UTC | #1
On Wed, Oct 04, 2017 at 03:03:33PM -0700, Aman Gupta wrote:
> From: Aman Gupta <aman@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);

should be ok

[...]
diff mbox

Patch

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