Mercurial > libavcodec.hg
diff resample.c @ 6023:78b46e3f9df2 libavcodec
Add missing '\n' to log format text
| author | andoma |
|---|---|
| date | Sat, 15 Dec 2007 10:03:49 +0000 |
| parents | 7d242886f17b |
| children | 1a93d3bbe3ee |
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; }
