Commit 3a9a15c4 authored by Kostya Shishkov's avatar Kostya Shishkov

add newline at the end of message

Originally committed as revision 15360 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent e6ab8623
...@@ -91,7 +91,7 @@ static int bmp_decode_frame(AVCodecContext *avctx, ...@@ -91,7 +91,7 @@ static int bmp_decode_frame(AVCodecContext *avctx,
width = bytestream_get_le16(&buf); width = bytestream_get_le16(&buf);
height = bytestream_get_le16(&buf); height = bytestream_get_le16(&buf);
} else { } 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; return -1;
} }
......
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