Skip to content

Commit

Permalink
Add missing '\n' to log format text
Browse files Browse the repository at this point in the history
Originally committed as revision 11224 to svn://svn.ffmpeg.org/ffmpeg/trunk
  • Loading branch information
andoma committed Dec 15, 2007
1 parent 94eadc8 commit 30dc554
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libavcodec/resample.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,14 +133,14 @@ ReSampleContext *audio_resample_init(int output_channels, int input_channels,

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;
}

Expand Down

0 comments on commit 30dc554

Please sign in to comment.