changeset 6023:78b46e3f9df2 libavcodec

Add missing '\n' to log format text
author andoma
date Sat, 15 Dec 2007 10:03:49 +0000
parents 6dd429a5d0be
children 151508a72dd7
files resample.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/resample.c	Sat Dec 15 07:01:33 2007 +0000
+++ b/resample.c	Sat Dec 15 10:03:49 2007 +0000
@@ -133,14 +133,14 @@
 
     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;
       }