Mercurial > libavformat.hg
changeset 5848:3c72ab66eb24 libavformat
cosmetics : Print newline after error message.
author | jai_menon |
---|---|
date | Mon, 15 Mar 2010 19:03:48 +0000 |
parents | d04ce2be0081 |
children | 219b4cc8f378 |
files | matroskaenc.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/matroskaenc.c Mon Mar 15 16:36:54 2010 +0000 +++ b/matroskaenc.c Mon Mar 15 19:03:48 2010 +0000 @@ -485,7 +485,7 @@ if (!codec->codec_tag) codec->codec_tag = ff_codec_get_tag(ff_codec_bmp_tags, codec->codec_id); if (!codec->codec_tag) { - av_log(s, AV_LOG_ERROR, "No bmp codec ID found."); + av_log(s, AV_LOG_ERROR, "No bmp codec ID found.\n"); ret = -1; } @@ -496,7 +496,7 @@ if (!codec->codec_tag) codec->codec_tag = ff_codec_get_tag(ff_codec_wav_tags, codec->codec_id); if (!codec->codec_tag) { - av_log(s, AV_LOG_ERROR, "No wav codec ID found."); + av_log(s, AV_LOG_ERROR, "No wav codec ID found.\n"); ret = -1; }