[FFmpeg-cvslog] r11224 - trunk/libavcodec/resample.c

andoma subversion
Sat Dec 15 11:03:49 CET 2007


Author: andoma
Date: Sat Dec 15 11:03:49 2007
New Revision: 11224

Log:
Add missing '\n' to log format text



Modified:
   trunk/libavcodec/resample.c

Modified: trunk/libavcodec/resample.c
==============================================================================
--- trunk/libavcodec/resample.c	(original)
+++ trunk/libavcodec/resample.c	Sat Dec 15 11:03:49 2007
@@ -133,14 +133,14 @@ ReSampleContext *audio_resample_init(int
 
     if ( input_channels > 2)
       {
-        av_log(NULL, AV_LOG_ERROR, "Resampling with input channels greater than 2 unsupported.");
+        av_log(NULL, AV_LOG_ERROR, "Resampling with input channels greater than 2 unsupported.\n");
         return NULL;
       }
 
     s = av_mallocz(sizeof(ReSampleContext));
     if (!s)
       {
-        av_log(NULL, AV_LOG_ERROR, "Can't allocate memory for resample context.");
+        av_log(NULL, AV_LOG_ERROR, "Can't allocate memory for resample context.\n");
         return NULL;
       }
 




More information about the ffmpeg-cvslog mailing list