diff mbox

[FFmpeg-devel,1/2] ffmpeg: add newline to avformat_write_header error message

Message ID 1478913810-14063-1-git-send-email-cus@passwd.hu
State Accepted
Commit d318e0602443558c3908c3c6e17b72f0ed299722
Headers show

Commit Message

Marton Balint Nov. 12, 2016, 1:23 a.m. UTC
Signed-off-by: Marton Balint <cus@passwd.hu>
---
 ffmpeg.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Michael Niedermayer Nov. 13, 2016, 1:38 a.m. UTC | #1
On Sat, Nov 12, 2016 at 02:23:29AM +0100, Marton Balint wrote:
> Signed-off-by: Marton Balint <cus@passwd.hu>
> ---
>  ffmpeg.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

LGTM

thx


[...]
Marton Balint Nov. 13, 2016, 2:30 a.m. UTC | #2
On Sun, 13 Nov 2016, Michael Niedermayer wrote:

> On Sat, Nov 12, 2016 at 02:23:29AM +0100, Marton Balint wrote:
>> Signed-off-by: Marton Balint <cus@passwd.hu>
>> ---
>>  ffmpeg.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> LGTM
>
> thx
>

Applied, thanks.

Marton
diff mbox

Patch

diff --git a/ffmpeg.c b/ffmpeg.c
index 067ef1d..37f4fec 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2800,7 +2800,7 @@  static int check_init_output_file(OutputFile *of, int file_index)
     if (ret < 0) {
         av_log(NULL, AV_LOG_ERROR,
                "Could not write header for output file #%d "
-               "(incorrect codec parameters ?): %s",
+               "(incorrect codec parameters ?): %s\n",
                file_index, av_err2str(ret));
         return ret;
     }