OSDN Git Service

matroskaenc: add missing new line in av_log() call
authorAurelien Jacobs <aurel@gnuage.org>
Thu, 24 Mar 2011 00:54:15 +0000 (01:54 +0100)
committerAnton Khirnov <anton@khirnov.net>
Thu, 12 May 2011 11:08:30 +0000 (13:08 +0200)
Signed-off-by: Aurelien Jacobs <aurel@gnuage.org>
Signed-off-by: Anton Khirnov <anton@khirnov.net>
libavformat/matroskaenc.c

index 781121a..4aa4caf 100644 (file)
@@ -616,7 +616,7 @@ static int mkv_write_tracks(AVFormatContext *s)
                 put_ebml_uint(pb, MATROSKA_ID_TRACKTYPE, MATROSKA_TRACK_TYPE_SUBTITLE);
                 break;
             default:
-                av_log(s, AV_LOG_ERROR, "Only audio, video, and subtitles are supported for Matroska.");
+                av_log(s, AV_LOG_ERROR, "Only audio, video, and subtitles are supported for Matroska.\n");
                 break;
         }
         ret = mkv_write_codecprivate(s, pb, codec, native_id, qt_id);