# HG changeset patch # User andoma # Date 1197713029 0 # Node ID 78b46e3f9df271649ca8587dfd5e49f26794c0b7 # Parent 6dd429a5d0be0ba1ea444ca421eb13d11c7d92e4 Add missing '\n' to log format text diff -r 6dd429a5d0be -r 78b46e3f9df2 resample.c --- 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; }