1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-29 20:56:12 +02:00

add newline at the end of message

Originally committed as revision 15360 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Kostya Shishkov 2008-09-18 14:08:44 +00:00
parent e6ab862368
commit 3a9a15c4f3

View File

@ -91,7 +91,7 @@ static int bmp_decode_frame(AVCodecContext *avctx,
width = bytestream_get_le16(&buf);
height = bytestream_get_le16(&buf);
} else {
av_log(avctx, AV_LOG_ERROR, "unsupported BMP file, patch welcome");
av_log(avctx, AV_LOG_ERROR, "unsupported BMP file, patch welcome\n");
return -1;
}