From 6ba74be511216d761eeed8e71439b6f6a65385b0 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sat, 14 Jan 2012 10:35:03 +0100 Subject: [PATCH] Add CR/LF to a reget_buffer warning message. --- libavcodec/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 91c5e43c2e..219be6b7fb 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -558,7 +558,7 @@ int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic){ assert(s->codec_type == AVMEDIA_TYPE_VIDEO); if (pic->data[0] && (pic->width != s->width || pic->height != s->height || pic->format != s->pix_fmt)) { - av_log(s, AV_LOG_WARNING, "Width/height/fmt changing with reget buffer"); + av_log(s, AV_LOG_WARNING, "Width/height/fmt changing with reget buffer\n"); s->release_buffer(s, pic); }