Browse code

add missing \n to error message

Originally committed as revision 19313 to svn://svn.ffmpeg.org/ffmpeg/trunk

Baptiste Coudurier authored on 2009/07/01 15:48:27
Showing 1 changed files
... ...
@@ -90,7 +90,7 @@ static av_cold int oggvorbis_encode_init(AVCodecContext *avccontext) {
90 90
 
91 91
     vorbis_info_init(&context->vi) ;
92 92
     if(oggvorbis_init_encoder(&context->vi, avccontext) < 0) {
93
-        av_log(avccontext, AV_LOG_ERROR, "oggvorbis_encode_init: init_encoder failed") ;
93
+        av_log(avccontext, AV_LOG_ERROR, "oggvorbis_encode_init: init_encoder failed\n") ;
94 94
         return -1 ;
95 95
     }
96 96
     vorbis_analysis_init(&context->vd, &context->vi) ;