diff matroskaenc.c @ 5848:3c72ab66eb24 libavformat

cosmetics : Print newline after error message.
author jai_menon
date Mon, 15 Mar 2010 19:03:48 +0000
parents 67059af53c04
children 121d6994c20e
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;
         }