changeset 9901:3f766c507a70 libavcodec

add missing \n to error message
author bcoudurier
date Wed, 01 Jul 2009 06:48:27 +0000
parents 681cf949c1cf
children 9bdf9fe9018c
files libvorbis.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libvorbis.c	Wed Jul 01 00:55:17 2009 +0000
+++ b/libvorbis.c	Wed Jul 01 06:48:27 2009 +0000
@@ -90,7 +90,7 @@
 
     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) ;