From a63d49334e02917d9a29365535056ca54e30b55d Mon Sep 17 00:00:00 2001 From: "Steven M. Schultz" Date: Thu, 25 Sep 2003 08:38:16 +0000 Subject: [PATCH] yuv4mpeg.c extra space patch by ("Steven M. Schultz" ) Originally committed as revision 2301 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/yuv4mpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/yuv4mpeg.c b/libavformat/yuv4mpeg.c index 1c6e74b071..cc39ff8b8e 100644 --- a/libavformat/yuv4mpeg.c +++ b/libavformat/yuv4mpeg.c @@ -126,7 +126,7 @@ static int yuv4_write_packet(AVFormatContext *s, int stream_index, picture = (AVPicture *)buf; /* construct frame header */ - m = snprintf(buf1, sizeof(buf1), "%s \n", Y4M_FRAME_MAGIC); + m = snprintf(buf1, sizeof(buf1), "%s\n", Y4M_FRAME_MAGIC); put_buffer(pb, buf1, strlen(buf1)); width = st->codec.width;