Skip to content

Commit

Permalink
matroskaenc: add missing new line in av_log() call
Browse files Browse the repository at this point in the history
Signed-off-by: Aurelien Jacobs <[email protected]>
  • Loading branch information
aurelj committed Mar 24, 2011
1 parent 2851b1f commit 75f4d1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libavformat/matroskaenc.c
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,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);
Expand Down

0 comments on commit 75f4d1f

Please sign in to comment.