From fb0a835ff4704965b029dbce3d0e2edf79e0063a Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Wed, 1 Jul 2009 06:48:27 +0000 Subject: [PATCH] add missing \n to error message Originally committed as revision 19313 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/libvorbis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/libvorbis.c b/libavcodec/libvorbis.c index 34b2a5912..11d9a2863 100644 --- a/libavcodec/libvorbis.c +++ b/libavcodec/libvorbis.c @@ -90,7 +90,7 @@ static av_cold int oggvorbis_encode_init(AVCodecContext *avccontext) { vorbis_info_init(&context->vi) ; if(oggvorbis_init_encoder(&context->vi, avccontext) < 0) { - av_log(avccontext, AV_LOG_ERROR, "oggvorbis_encode_init: init_encoder failed") ; + av_log(avccontext, AV_LOG_ERROR, "oggvorbis_encode_init: init_encoder failed\n") ; return -1 ; } vorbis_analysis_init(&context->vd, &context->vi) ; -- 2.11.0