libopencore-amr: Don't print carriage returns in log messages

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Martin Storsjö 2011-04-13 00:08:14 +03:00
parent 587331414b
commit a8ec07c933

View File

@ -84,7 +84,7 @@ static av_cold int amr_nb_decode_init(AVCodecContext *avctx)
s->frameCount = 0;
s->decState = Decoder_Interface_init();
if (!s->decState) {
av_log(avctx, AV_LOG_ERROR, "Decoder_Interface_init error\r\n");
av_log(avctx, AV_LOG_ERROR, "Decoder_Interface_init error\n");
return -1;
}