Commit 4ff4d4e2 authored by andoma's avatar andoma

Add missing '\n' to log format text



git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11224 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6d2c3a0e
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment